Package org.apache.commons.daemon
Class DaemonInitException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.commons.daemon.DaemonInitException
-
- All Implemented Interfaces:
java.io.Serializable
public class DaemonInitException extends java.lang.Exception
Throw this during init if you can't initialize yourself for some expected reason. Using this exception will cause the exception's message to come out on stdout, rather than a dirty great stack trace.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description DaemonInitException(java.lang.String message)
Constructs a new exception with the given message.DaemonInitException(java.lang.String message, java.lang.Throwable cause)
Constructs a new exception with the given detail and cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getMessageWithCause()
Gets the message with the cause as a postfix.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
DaemonInitException
public DaemonInitException(java.lang.String message)
Constructs a new exception with the given message.- Parameters:
message
- the detail message accessible withThrowable.getMessage()
.
-
DaemonInitException
public DaemonInitException(java.lang.String message, java.lang.Throwable cause)
Constructs a new exception with the given detail and cause.- Parameters:
message
- the detail message accessible withThrowable.getMessage()
.cause
- the cause accessible withThrowable.getCause()
.
-
-