OSDN Git Service

remove Revision tag
[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  */
11 public class ExtractorNotFoundException extends BirthmarkException{
12     private static final long serialVersionUID = 2050231007494812969L;
13
14     public ExtractorNotFoundException(){
15     }
16
17     public ExtractorNotFoundException(String message, Throwable cause){
18         super(message, cause);
19     }
20
21     public ExtractorNotFoundException(String message){
22         super(message);
23     }
24
25     public ExtractorNotFoundException(Throwable cause){
26         super(cause);
27     }
28 }