com.sun.jersey.oauth.signature
Class OAuthSignatureException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.sun.jersey.oauth.signature.OAuthSignatureException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
InvalidSecretException, UnsupportedSignatureMethodException

public class OAuthSignatureException
extends Exception

Thrown to indicate that an OAuth exception occurred.

Author:
Paul C. Bryan
See Also:
Serialized Form

Constructor Summary
OAuthSignatureException()
          Constructs an OAuth signature exception with no detail message.
OAuthSignatureException(String s)
          Constructs an OAuth signature exception with the specified detail message.
OAuthSignatureException(Throwable cause)
          Constructs an OAuth signature exception with the specified cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

OAuthSignatureException

public OAuthSignatureException()
Constructs an OAuth signature exception with no detail message.


OAuthSignatureException

public OAuthSignatureException(String s)
Constructs an OAuth signature exception with the specified detail message.

Parameters:
s - the detail message.

OAuthSignatureException

public OAuthSignatureException(Throwable cause)
Constructs an OAuth signature exception with the specified cause.

Parameters:
cause - the cause of the exception.


Copyright © 2013 Oracle Corporation. All Rights Reserved.