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