WEPSException.java [src/soils/exceptions] 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 soils.exceptions;

/**
 *
 * @author <a href="mailto:shaun.case@colostate.edu">Shaun Case</a>
 */
public class WEPSException extends Exception {

    public WEPSException() {

    }

    public WEPSException(String message) {
        super(message);
    }

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

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

    public WEPSException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);

    }
    
}