View Javadoc

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