OSDN Git Service

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