OSDN Git Service

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