1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.jetspeed.deployment.impl;
18
19 import org.apache.jetspeed.deployment.DeploymentException;
20
21
22 /***
23 * @author <a href="mailto:weaver@apache.org">Scott T. Weaver</a>
24 *
25 * TODO To change the template for this generated type comment go to
26 *
27 * Thrown when attempting to deploy a file that cannot be deployed.
28 */
29 public class FileNotDeployableException extends DeploymentException
30 {
31
32 /***
33 *
34 */
35 public FileNotDeployableException()
36 {
37 super();
38
39 }
40
41 /***
42 * @param message
43 */
44 public FileNotDeployableException( String message )
45 {
46 super(message);
47
48 }
49
50 /***
51 * @param nested
52 */
53 public FileNotDeployableException( Throwable nested )
54 {
55 super(nested);
56
57 }
58
59 /***
60 * @param msg
61 * @param nested
62 */
63 public FileNotDeployableException( String msg, Throwable nested )
64 {
65 super(msg, nested);
66
67 }
68
69 }