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