oidc-library-portal/src/main/java/org/gcube/portal/oidc/lr62/OIDCException.java

32 lines
872 B
Java

package org.gcube.portal.oidc.lr62;
public class OIDCException extends Exception {
private static final long serialVersionUID = -882800971125567037L;
public OIDCException() {
// TODO Auto-generated constructor stub
}
public OIDCException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public OIDCException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
public OIDCException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
public OIDCException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
// TODO Auto-generated constructor stub
}
}