SoilsDbException.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 SoilsDbException extends Exception {
public SoilsDbException() {
}
public SoilsDbException(String message) {
super(message);
}
public SoilsDbException(String message, Throwable cause) {
super(message, cause);
}
public SoilsDbException(Throwable cause) {
super(cause);
}
public SoilsDbException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}