com.sequencing.oauth.exception.NonAuthorizedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oauth2-core Show documentation
Show all versions of oauth2-core Show documentation
Module provides API access to sequencing.com backend
package com.sequencing.oauth.exception;
public class NonAuthorizedException extends Exception
{
private static final long serialVersionUID = -7927469831608112282L;
public NonAuthorizedException() {
}
public NonAuthorizedException(String message) {
super(message);
}
public NonAuthorizedException(Throwable cause) {
super(cause);
}
public NonAuthorizedException(String message, Throwable cause) {
super(message, cause);
}
public NonAuthorizedException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy