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