Package org.codehaus.cargo.tools.daemon
Class DaemonException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.codehaus.cargo.tools.daemon.DaemonException
-
- All Implemented Interfaces:
Serializable
public class DaemonException extends Exception
Indicates an error received from Cargo manager.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DaemonException()
Creates a newManagerException
with no message or cause.DaemonException(String message)
Creates a newManagerException
with the specified message and no cause.DaemonException(String message, Throwable cause)
Creates a newManagerException
with the specified message and cause.DaemonException(Throwable cause)
Creates a newManagerException
with no message and the specified cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
DaemonException
public DaemonException()
Creates a newManagerException
with no message or cause.
-
DaemonException
public DaemonException(String message)
Creates a newManagerException
with the specified message and no cause.- Parameters:
message
- the message for this exception
-
DaemonException
public DaemonException(Throwable cause)
Creates a newManagerException
with no message and the specified cause.- Parameters:
cause
- the cause of this exception
-
-