01: //-< JSQLArithmeticException.java >----------------------------------*--------*
02: // JSQL Version 1.04 (c) 1999 GARRET * ? *
03: // (Java SQL) * /\| *
04: // * / \ *
05: // Created: 10-Dec-2002 K.A. Knizhnik * / [] \ *
06: // Last update: 10-Dec-2002 K.A. Knizhnik * GARRET *
07: //-------------------------------------------------------------------*--------*
08: // Exception thown in case of incorect operands for integer operations
09: //-------------------------------------------------------------------*--------*
10:
11: package org.garret.perst;
12:
13: /**
14: * Exception thown in case of incorect operands for integer operations
15: */
16: public class JSQLArithmeticException extends JSQLRuntimeException {
17: /**
18: * Constructor of exception
19: */
20: public JSQLArithmeticException(String msg) {
21: super(msg, null, null);
22: }
23: }
|