Package org.refcodes.exception
Class BreakOutException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.refcodes.exception.AbstractException
-
- org.refcodes.exception.BreakOutException
-
- All Implemented Interfaces:
java.io.Serializable,ErrorCodeAccessor,Trap
public class BreakOutException extends AbstractException implements java.io.Serializable
Thrown to break out (of e.g. streams). See alsoBreakOutException.BreakOutRuntimeException.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBreakOutException.BreakOutRuntimeExceptionThrown to break out (of e.g. streams).-
Nested classes/interfaces inherited from interface org.refcodes.exception.ErrorCodeAccessor
ErrorCodeAccessor.ErrorCodeBuilder<B extends ErrorCodeAccessor.ErrorCodeBuilder<B>>, ErrorCodeAccessor.ErrorCodeMutator, ErrorCodeAccessor.ErrorCodeProperty
-
-
Constructor Summary
Constructors Constructor Description BreakOutException()Instantiates a new break-out exception.BreakOutException(java.lang.String message)Instantiates a new break-out exception.BreakOutException(java.lang.String aMessage, java.lang.String aErrorCode)Instantiates a new break-out exception.BreakOutException(java.lang.String message, java.lang.Throwable cause)Instantiates a new break-out exception.BreakOutException(java.lang.String aMessage, java.lang.Throwable aCause, java.lang.String aErrorCode)Instantiates a new break-out exception.BreakOutException(java.lang.Throwable cause)Instantiates a new break-out exception.BreakOutException(java.lang.Throwable aCause, java.lang.String aErrorCode)Instantiates a new break-out exception.
-
Method Summary
-
Methods inherited from class org.refcodes.exception.AbstractException
getErrorCode
-
-
-
-
Constructor Detail
-
BreakOutException
public BreakOutException()
Instantiates a new break-out exception.
-
BreakOutException
public BreakOutException(java.lang.String aMessage, java.lang.String aErrorCode)Instantiates a new break-out exception.- Parameters:
aMessage- the messageaErrorCode- the error code
-
BreakOutException
public BreakOutException(java.lang.String aMessage, java.lang.Throwable aCause, java.lang.String aErrorCode)Instantiates a new break-out exception.- Parameters:
aMessage- the messageaCause- the causeaErrorCode- the error code
-
BreakOutException
public BreakOutException(java.lang.String message, java.lang.Throwable cause)Instantiates a new break-out exception.- Parameters:
message- the messagecause- the cause
-
BreakOutException
public BreakOutException(java.lang.String message)
Instantiates a new break-out exception.- Parameters:
message- the message
-
BreakOutException
public BreakOutException(java.lang.Throwable aCause, java.lang.String aErrorCode)Instantiates a new break-out exception.- Parameters:
aCause- the causeaErrorCode- the error code
-
BreakOutException
public BreakOutException(java.lang.Throwable cause)
Instantiates a new break-out exception.- Parameters:
cause- the cause
-
-