Class InvalidSecretException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.glassfish.jersey.oauth1.signature.OAuth1SignatureException
-
- org.glassfish.jersey.oauth1.signature.InvalidSecretException
-
- All Implemented Interfaces:
java.io.Serializable
public class InvalidSecretException extends OAuth1SignatureException
Thrown to indicate that the OAuth secret supplied is invalid or otherwise unsupported.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidSecretException()
Constructs an invalid OAuth secret exception with no detail message.InvalidSecretException(java.lang.String s)
Constructs an invalid OAuth secret exception with the specified detail message.
-
-
-
Constructor Detail
-
InvalidSecretException
public InvalidSecretException()
Constructs an invalid OAuth secret exception with no detail message.
-
InvalidSecretException
public InvalidSecretException(java.lang.String s)
Constructs an invalid OAuth secret exception with the specified detail message.- Parameters:
s
- the detail message.
-
-