KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > manentia > kasai > exceptions > DoesntExistsException


1 package org.manentia.kasai.exceptions;
2
3 import com.koala.commons.NonCriticalException;
4
5
6 /**
7  *
8  * @author rzuasti
9  */

10 public class DoesntExistsException extends NonCriticalException {
11      
12     public DoesntExistsException() {
13         super();
14     }
15         
16     public DoesntExistsException(String JavaDoc msg) {
17         super(msg);
18     }
19     
20     public DoesntExistsException(String JavaDoc msg, Throwable JavaDoc cause) {
21         super(msg, cause);
22     }
23     
24     public DoesntExistsException(Throwable JavaDoc cause) {
25         super(cause);
26     }
27 }
28
Popular Tags