01: package org.mdarad.framework.exception;
02:
03: public class ConcurrencyException extends Exception {
04: private static final long serialVersionUID = 1828640386634510663L;
05:
06: public ConcurrencyException() {
07: super ();
08: }
09:
10: public ConcurrencyException(String arg0) {
11: super (arg0);
12: }
13:
14: public ConcurrencyException(Throwable arg0) {
15: super (arg0);
16: }
17:
18: public ConcurrencyException(String arg0, Throwable arg1) {
19: super(arg0, arg1);
20: }
21:
22: }
|