01: package org.enhydra.dm.business.exceptions;
02:
03: import org.enhydra.dm.api.exceptions.BaseException;
04:
05: /**
06: * Extension of BaseException for Lock Exceptions
07: *
08: * @author Svjetlana Milidrag
09: */
10: public class LockException extends BaseException {
11:
12: public LockException() {
13: super ();
14:
15: }
16:
17: public LockException(String arg0, Throwable arg1) {
18: super (arg0, arg1);
19:
20: }
21:
22: public LockException(String arg0) {
23: super (arg0);
24:
25: }
26:
27: public LockException(Throwable arg0) {
28: super(arg0);
29:
30: }
31:
32: }
|