- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.refcodes.exception.AbstractException
-
- org.refcodes.component.ComponentException
-
- org.refcodes.component.ResetException
-
- All Implemented Interfaces:
Serializable,org.refcodes.exception.ErrorCodeAccessor,org.refcodes.exception.Trap
public class ResetException extends ComponentException
Thrown in case resetting a component caused problems. Usually a method similar to "reset()" throws such an exception.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classResetException.ResetRuntimeExceptionUnchecked exception with the same semantics as theResetException.-
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 ResetException(String message)Instantiates a new reset exception.ResetException(String aMessage, String aErrorCode)Instantiates a new reset exception.ResetException(String message, Throwable cause)Instantiates a new reset exception.ResetException(String aMessage, Throwable aCause, String aErrorCode)Instantiates a new reset exception.ResetException(Throwable cause)Instantiates a new reset exception.ResetException(Throwable aCause, String aErrorCode)Instantiates a new reset 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
-
ResetException
public ResetException(String aMessage, String aErrorCode)
Instantiates a new reset exception.- Parameters:
aMessage- the messageaErrorCode- the error code
-
ResetException
public ResetException(String aMessage, Throwable aCause, String aErrorCode)
Instantiates a new reset exception.- Parameters:
aMessage- the messageaCause- the causeaErrorCode- the error code
-
ResetException
public ResetException(String message, Throwable cause)
Instantiates a new reset exception.- Parameters:
message- the messagecause- the cause
-
ResetException
public ResetException(String message)
Instantiates a new reset exception.- Parameters:
message- the message
-
ResetException
public ResetException(Throwable aCause, String aErrorCode)
Instantiates a new reset exception.- Parameters:
aCause- the causeaErrorCode- the error code
-
ResetException
public ResetException(Throwable cause)
Instantiates a new reset exception.- Parameters:
cause- the cause
-
-