OSDN Git Service

Remove Id tag
[stigmata/stigmata.git] / src / main / java / jp / sourceforge / stigmata / BirthmarkStoreException.java
1 package jp.sourceforge.stigmata;
2
3 /**
4  * This exception class will be thrown when birthmark storing is failed.
5  * 
6  * @author Haruaki Tamada
7  */
8 public class BirthmarkStoreException extends BirthmarkException{
9     private static final long serialVersionUID = -7106053809841281816L;
10
11     public BirthmarkStoreException(){
12     }
13
14     public BirthmarkStoreException(String message, Throwable cause){
15         super(message, cause);
16     }
17
18     public BirthmarkStoreException(String message){
19         super(message);
20     }
21
22     public BirthmarkStoreException(Throwable cause){
23         super(cause);
24     }
25 }