public class AtbashUnexpectedException extends AtbashException
Typically used for catching something when you you don't expect to have ever that issue. But since it is a checked exception, you need to capture it and this is a convention way to let the exception bubble up to a handler which handle any AtbashException.
| Constructor and Description |
|---|
AtbashUnexpectedException(String message)
Creates an unexpectedException with a message.
|
AtbashUnexpectedException(Throwable cause)
Creates an unexpectedException with a Throwable.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic AtbashUnexpectedException(String message)
message - The message what went unexpectedly wrong.public AtbashUnexpectedException(Throwable cause)
cause - The Throwable which you is not expected to occur.Copyright © 2014–2018. All rights reserved.