OSDN Git Service

update
[stigmata/stigmata.git] / src / main / java / jp / sourceforge / stigmata / BirthmarkTypeMismatchException.java
1 package jp.sourceforge.stigmata;
2
3 /*
4  * $Id$
5  */
6
7 /**
8  * This exception class be thrown when birthmark types are different in some
9  * operation such as merging, and comparing.
10  * 
11  * @author Haruaki TAMADA
12  * @version $Revision$ 
13  */
14 public class BirthmarkTypeMismatchException extends BirthmarkException{
15     private static final long serialVersionUID = -6198325117696243731L;
16
17     public BirthmarkTypeMismatchException(){
18         super();
19     }
20
21     public BirthmarkTypeMismatchException(String message, Throwable cause){
22         super(message, cause);
23     }
24
25     public BirthmarkTypeMismatchException(String message){
26         super(message);
27     }
28
29     public BirthmarkTypeMismatchException(Throwable cause){
30         super(cause);
31     }
32 }