All Downloads are FREE. Search and download functionalities are using the official Maven repository.

oauth.signpost.exception.OAuthException Maven / Gradle / Ivy

There is a newer version: 7.4.3.112-ga112
Show newest version
package oauth.signpost.exception;

@SuppressWarnings("serial")
public abstract class OAuthException extends Exception {

    public OAuthException(String message) {
        super(message);
    }

    public OAuthException(Throwable cause) {
        super(cause);
    }

    public OAuthException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy