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 org.glassfish.hk2.api.HK2RuntimeException
Exception related to the operations of the
RunLevelController.- Author:
- jtrent, tbeerbower
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionBasic 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 Details
-
RunLevelException
public RunLevelException()Basic no-args constructor -
RunLevelException
Exception with message- Parameters:
message- The message to be associated with this exception
-
RunLevelException
Exception with origin- Parameters:
origin- The exception that caused the exception
-
RunLevelException
Exception with message and origin- Parameters:
message- The message to be associated with this exceptionorigin- The exception that caused the exception
-