/* * FormDataException.java * * Created on November 24, 2005, 1:20 PM * * To change this template, choose Tools | Options and locate the template under * the Source Creation and Management node. Right-click the template and choose * Open. You can then make changes to the template in the Source Editor. */ package org.tgdb.form; /** * * @author lami */ public class FormDataException extends Exception { /** Creates a new instance of FormDataException */ public FormDataException(String message) { super(message); } }