1 package org.manentia.kasai.exceptions; 2 3 import com.koala.commons.CriticalException; 4 5 9 public class ServiceException extends CriticalException { 10 11 public ServiceException() { 12 super(); 13 } 14 15 public ServiceException(String msg) { 16 super(msg); 17 } 18 19 public ServiceException(String msg, Throwable cause) { 20 super(msg, cause); 21 } 22 23 public ServiceException(Throwable cause) { 24 super(cause); 25 } 26 } 27 | Popular Tags |