package eu.dnetlib.enabling.aas.saml.adapter;

/**
 * Adapter exception class.
 * @author mhorst
 *
 */
public class AdapterException extends Exception {

    /**
	 * 
	 */
	private static final long serialVersionUID = 4223348223369519797L;

	
	public AdapterException(String msg) {
        super(msg);
    }

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

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

    public AdapterException() {
    }

}
