1 package jp.sf.grizzly;
2
3 public class GrizzlyException extends Exception
4 {
5 public GrizzlyException()
6 {
7 super();
8 }
9
10 public GrizzlyException( String message )
11 {
12 super( message );
13 }
14
15 public GrizzlyException(Throwable nested)
16 {
17 super(nested);
18 }
19
20 public GrizzlyException(String msg, Throwable nested)
21 {
22 super(msg, nested);
23 }
24
25 }