JSD-7610 SAML单点
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
365 B

package com.fr.plugin.xxxx.saml.xxxx.saml;
public class SAMLException extends Exception {
private static final long serialVersionUID = 1L;
public SAMLException() {
}
public SAMLException(Throwable e) {
super(e);
}
public SAMLException(String message) {
super(message);
}
public SAMLException(String message, Throwable e) {
super(message, e);
}
}