Class ScramRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.ongres.scram.common.exception.ScramRuntimeException
- All Implemented Interfaces:
Serializable
This class represents an error when using SCRAM, which is a SASL method.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionScramRuntimeException
(String detail) Constructs a new instance of ScramRuntimeException with a detailed message.ScramRuntimeException
(String detail, Throwable ex) Constructs a new instance of ScramRuntimeException with a detailed message and a root cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
ScramRuntimeException
Constructs a new instance of ScramRuntimeException with a detailed message.- Parameters:
detail
- A String containing details about the exception
-
ScramRuntimeException
Constructs a new instance of ScramRuntimeException with a detailed message and a root cause.- Parameters:
detail
- A String containing details about the exceptionex
- The root exception
-