/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package usda.weru.soil;

/**
 *
 * @author Joseph Levin <joelevin@weru.ksu.edu>
 */
public class OrganicSoilException extends RuntimeException{
    public OrganicSoilException(){

    }

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