OSDN Git Service

4a49f81ab91f7601023143c2e1a833b70ee432ce
[stigmata/stigmata.git] / src / main / java / jp / sourceforge / stigmata / BirthmarkComparisonFailedException.java
1 package jp.sourceforge.stigmata;
2
3 /*
4  * $Id$
5  */
6
7 /**
8  * Thrown to indicate failed to compare two birthmarks. 
9  * 
10  * @author Haruaki Tamada
11  */
12 public class BirthmarkComparisonFailedException extends BirthmarkException{
13     private static final long serialVersionUID = 3194872113405859851L;
14
15     public BirthmarkComparisonFailedException(){
16     }
17
18     public BirthmarkComparisonFailedException(String message){
19         super(message);
20     }
21
22     public BirthmarkComparisonFailedException(Throwable cause){
23         super(cause);
24     }
25
26     public BirthmarkComparisonFailedException(String message, Throwable cause){
27         super(message, cause);
28     }
29 }