Package com.bld.crypto.exception
Class CryptoException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.bld.crypto.exception.CryptoException
-
- All Implemented Interfaces:
Serializable
public class CryptoException extends RuntimeException
The Class CryptoException.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CryptoException()Instantiates a new crypto exception.CryptoException(String message)Instantiates a new crypto exception.CryptoException(String message, Throwable cause)Instantiates a new crypto exception.CryptoException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)Instantiates a new crypto exception.CryptoException(Throwable cause)Instantiates a new crypto 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
-
CryptoException
public CryptoException()
Instantiates a new crypto exception.
-
CryptoException
public CryptoException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
Instantiates a new crypto exception.- Parameters:
message- the messagecause- the causeenableSuppression- the enable suppressionwritableStackTrace- the writable stack trace
-
CryptoException
public CryptoException(String message, Throwable cause)
Instantiates a new crypto exception.- Parameters:
message- the messagecause- the cause
-
CryptoException
public CryptoException(String message)
Instantiates a new crypto exception.- Parameters:
message- the message
-
CryptoException
public CryptoException(Throwable cause)
Instantiates a new crypto exception.- Parameters:
cause- the cause
-
-