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:
Serializable
public class RunLevelException extends HK2RuntimeException
Exception related to the operations of theRunLevelController
.- Author:
- jtrent, tbeerbower
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RunLevelException()
Basic no-args constructorRunLevelException(String message)
Exception with messageRunLevelException(String message, Throwable origin)
Exception with message and originRunLevelException(Throwable origin)
Exception with origin
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
RunLevelException
public RunLevelException()
Basic no-args constructor
-
RunLevelException
public RunLevelException(String message)
Exception with message- Parameters:
message
- The message to be associated with this exception
-
RunLevelException
public RunLevelException(Throwable origin)
Exception with origin- Parameters:
origin
- The exception that caused the exception
-
-