package org.vpac.grix.exceptions.shibboleth;
public class ShibbolethException extends Exception {
public ShibbolethException() {
// TODO Auto-generated constructor stub
}
public ShibbolethException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public ShibbolethException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
public ShibbolethException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
}