Package org.glassfish.hk2.runlevel
Class RunLevelException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.glassfish.hk2.api.HK2RuntimeException
-
- org.glassfish.hk2.runlevel.RunLevelException
-
- All Implemented Interfaces:
java.io.Serializable
public class RunLevelException extends HK2RuntimeException
Exception related to the operations of theRunLevelController
.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
For serialization
-
Constructor Summary
Constructors Constructor Description RunLevelException()
Basic no-args constructorRunLevelException(java.lang.String message)
Exception with messageRunLevelException(java.lang.String message, java.lang.Throwable origin)
Exception with message and originRunLevelException(java.lang.Throwable origin)
Exception with origin
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
For serialization- See Also:
- Constant Field Values
-
-
Constructor Detail
-
RunLevelException
public RunLevelException()
Basic no-args constructor
-
RunLevelException
public RunLevelException(java.lang.String message)
Exception with message- Parameters:
message
- The message to be associated with this exception
-
RunLevelException
public RunLevelException(java.lang.Throwable origin)
Exception with origin- Parameters:
origin
- The exception that caused the exception
-
RunLevelException
public RunLevelException(java.lang.String message, java.lang.Throwable origin)
Exception with message and origin- Parameters:
message
- The message to be associated with this exceptionorigin
- The exception that caused the exception
-
-