ECATException.java [src/java/m/ecat] Revision: default  Date:
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package m.ecat;

/**
 *
 * @author Brad
 */
public class ECATException extends Exception{
    
    public ECATException(){ super();}
    
    public ECATException(String message){
        super(message);
    }
    
    public ECATException(String message, Throwable cause) { super(message, cause); }
    
    public ECATException(Throwable cause) { super(cause); }
}