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

package usda.weru.weps.reports;

/**
 *
 * @author Joseph Levin <joelevin@weru.ksu.edu>
 */
public class VetoException extends Exception {
    private static final long serialVersionUID = 1L;

	/**
	 *
	 */
	public VetoException(){
        super();
    }

	/**
	 *
	 * @param message
	 */
	public VetoException(String message){
        super(message);
    }

}
