Constructors Summary |
---|
public AutoDeploymentException()constructor with no argument
super();
|
public AutoDeploymentException(String mes)constructor with argument String
super(mes);
|
public AutoDeploymentException(Throwable t)constructor with argument Throwable
super(t.toString());
|
public AutoDeploymentException(String s, Throwable t)constructor with argument String, Throwable
super(s + " -- " + t.getMessage(), t);
|