<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package usda.weru.weps.reports;

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

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

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

}
</pre></body></html>