OSDN Git Service

83541ce79ab6a19b7877e473c674ad9dadfba49f
[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  */
13 public class BirthmarkTypeMismatchException extends BirthmarkException{
14     private static final long serialVersionUID = -6198325117696243731L;
15
16     public BirthmarkTypeMismatchException(){
17         super();
18     }
19
20     public BirthmarkTypeMismatchException(String message, Throwable cause){
21         super(message, cause);
22     }
23
24     public BirthmarkTypeMismatchException(String message){
25         super(message);
26     }
27
28     public BirthmarkTypeMismatchException(Throwable cause){
29         super(cause);
30     }
31 }