01: package org.manentia.kasai.exceptions;
02:
03: import com.manentia.commons.NonCriticalException;
04:
05: /**
06: *
07: * @author rzuasti
08: */
09: public class AlreadyExistsException extends NonCriticalException {
10:
11: private static final long serialVersionUID = 3257848779335349809L;
12:
13: public AlreadyExistsException() {
14: super ();
15: }
16:
17: public AlreadyExistsException(String msg) {
18: super (msg);
19: }
20:
21: public AlreadyExistsException(String msg, Throwable cause) {
22: super (msg, cause);
23: }
24:
25: public AlreadyExistsException(Throwable cause) {
26: super(cause);
27: }
28: }
|