OrganicSoilException.java [src/java/d/util] Revision: default Date:
/*
* $Id$
*
* This file is part of the Cloud Services Integration Platform (CSIP),
* a Model-as-a-Service framework, API, and application suite.
*
* 2012-2017, OMSLab, Colorado State University.
*
* OMSLab licenses this file to you under the MIT license.
* See the LICENSE file in the project root for more information.
*/
package d.util;
/**
*
* @author brad
*/
public class OrganicSoilException extends RuntimeException{
private static final long serialVersionUID = 1L;
/**
*
*/
public OrganicSoilException(){
}
/**
*
* @param message
*/
public OrganicSoilException(String message){
super(message);
}
}