KickJava   Java API By Example, From Geeks To Geeks.

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


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

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