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:
Serializable
public class InvalidSecretException extends OAuth1SignatureException
Thrown to indicate that the OAuth secret supplied is invalid or otherwise unsupported.- Author:
- Paul C. Bryan
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidSecretException()Constructs an invalid OAuth secret exception with no detail message.InvalidSecretException(String s)Constructs an invalid OAuth secret exception with the specified detail message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
InvalidSecretException
public InvalidSecretException()
Constructs an invalid OAuth secret exception with no detail message.
-
InvalidSecretException
public InvalidSecretException(String s)
Constructs an invalid OAuth secret exception with the specified detail message.- Parameters:
s- the detail message.
-
-