Class ScramInvalidServerSignatureException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ongres.scram.common.exception.ScramException
-
- com.ongres.scram.common.exception.ScramInvalidServerSignatureException
-
- All Implemented Interfaces:
java.io.Serializable
public class ScramInvalidServerSignatureException extends ScramException
This class represents an error when verifying the a base64-encoded ServerSignature in aserver-final-message
.Is used by the client to verify that the server has access to the user's authentication information.
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description ScramInvalidServerSignatureException(java.lang.String detail)
Constructs a new instance of ScramInvalidServerSignatureException with a detailed message.ScramInvalidServerSignatureException(java.lang.String detail, java.lang.Throwable ex)
Constructs a new instance of ScramInvalidServerSignatureException with a detailed message and a root cause.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ScramInvalidServerSignatureException
public ScramInvalidServerSignatureException(java.lang.String detail)
Constructs a new instance of ScramInvalidServerSignatureException with a detailed message.- Parameters:
detail
- A String containing details about the exception
-
ScramInvalidServerSignatureException
public ScramInvalidServerSignatureException(java.lang.String detail, java.lang.Throwable ex)
Constructs a new instance of ScramInvalidServerSignatureException with a detailed message and a root cause.- Parameters:
detail
- A String containing details about the exceptionex
- The root exception
-
-