Class ScramParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- javax.security.sasl.SaslException
-
- com.ongres.scram.common.exception.ScramException
-
- com.ongres.scram.common.exception.ScramParseException
-
- All Implemented Interfaces:
java.io.Serializable
public class ScramParseException extends ScramException
This class represents an error when parsing SCRAM messages- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ScramParseException(java.lang.String detail)
Constructs a new instance of ScramParseException with a detailed message.ScramParseException(java.lang.String detail, java.lang.Throwable ex)
Constructs a new instance of ScramParseException with a detailed message and a root cause.
-
-
-
Constructor Detail
-
ScramParseException
public ScramParseException(java.lang.String detail)
Constructs a new instance of ScramParseException with a detailed message.- Parameters:
detail
- A String containing details about the exception
-
ScramParseException
public ScramParseException(java.lang.String detail, java.lang.Throwable ex)
Constructs a new instance of ScramParseException with a detailed message and a root cause.- Parameters:
detail
- A String containing details about the exceptionex
- The root exception
-
-