OSDN Git Service

60e58ccca16174939121b0f1c38f95bf2e9b0180
[stigmata/stigmata.git] / src / main / java / jp / sourceforge / stigmata / BirthmarkException.java
1 package jp.sourceforge.stigmata;
2
3 /*
4  * $Id$
5  */
6
7 /**
8  * This exception represents occuring some exceptions caused birthmarking.
9  * 
10  * @author Haruaki TAMADA
11  * @version $Revision$ 
12  */
13 public class BirthmarkException extends Exception{
14     private static final long serialVersionUID = -6422474631148213820L;
15
16     public BirthmarkException(){
17         super();
18     }
19
20     public BirthmarkException(String message, Throwable cause){
21         super(message, cause);
22     }
23
24     public BirthmarkException(String message){
25         super(message);
26     }
27
28     public BirthmarkException(Throwable cause){
29         super(cause);
30     }
31 }