01: /*
02: * User: mrettig
03: * Date: Jul 1, 2002
04: * Time: 9:57:20 AM
05: */
06: package net.sourceforge.jaxor;
07:
08: import net.sourceforge.jaxor.util.SystemException;
09:
10: public class SQLValidationException extends SystemException {
11: public SQLValidationException(String msg) {
12: super(msg);
13: }
14: }
|