01: package org.objectweb.salome_tmf.api.sql;
02:
03: public class LockException extends Exception {
04:
05: static public final int DOLOCK = 1;
06: static public final int INSERT_LOCK = 2;
07: static public final int DELETE_LOCK = 3;
08: public int code;
09:
10: public LockException(String msg, int _code) {
11: super(msg);
12: code = _code;
13: }
14: }
|