Module org.refcodes.component
Package org.refcodes.component
Class PauseException.PauseRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.refcodes.exception.AbstractRuntimeException
-
- org.refcodes.component.ComponentRuntimeException
-
- org.refcodes.component.LifecycleException.LifecycleRuntimeException
-
- org.refcodes.component.PauseException.PauseRuntimeException
-
- All Implemented Interfaces:
Serializable
,org.refcodes.exception.ErrorCodeAccessor
,org.refcodes.exception.Trap
- Enclosing class:
- PauseException
public static class PauseException.PauseRuntimeException extends LifecycleException.LifecycleRuntimeException
Unchecked exception with the same semantics as thePauseException
.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.refcodes.exception.ErrorCodeAccessor
org.refcodes.exception.ErrorCodeAccessor.ErrorCodeBuilder<B extends org.refcodes.exception.ErrorCodeAccessor.ErrorCodeBuilder<B>>, org.refcodes.exception.ErrorCodeAccessor.ErrorCodeMutator, org.refcodes.exception.ErrorCodeAccessor.ErrorCodeProperty
-
-
Constructor Summary
Constructors Constructor Description PauseRuntimeException(String message)
Instantiates a new pause exception.PauseRuntimeException(String aMessage, String aErrorCode)
Instantiates a new pause exception.PauseRuntimeException(String message, Throwable cause)
Instantiates a new pause exception.PauseRuntimeException(String aMessage, Throwable aCause, String aErrorCode)
Instantiates a new pause exception.PauseRuntimeException(Throwable cause)
Instantiates a new pause exception.PauseRuntimeException(Throwable aCause, String aErrorCode)
Instantiates a new pause exception.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
PauseRuntimeException
public PauseRuntimeException(String aMessage, String aErrorCode)
Instantiates a new pause exception.- Parameters:
aMessage
- the messageaErrorCode
- the error code
-
PauseRuntimeException
public PauseRuntimeException(String aMessage, Throwable aCause, String aErrorCode)
Instantiates a new pause exception.- Parameters:
aMessage
- the messageaCause
- the causeaErrorCode
- the error code
-
PauseRuntimeException
public PauseRuntimeException(String message, Throwable cause)
Instantiates a new pause exception.- Parameters:
message
- the messagecause
- the cause
-
PauseRuntimeException
public PauseRuntimeException(String message)
Instantiates a new pause exception.- Parameters:
message
- the message
-
PauseRuntimeException
public PauseRuntimeException(Throwable aCause, String aErrorCode)
Instantiates a new pause exception.- Parameters:
aCause
- the causeaErrorCode
- the error code
-
PauseRuntimeException
public PauseRuntimeException(Throwable cause)
Instantiates a new pause exception.- Parameters:
cause
- the cause
-
-