OSDN Git Service

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