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