View Javadoc

1   /*
2    * 
3    * 
4    */
5   package example.filestorage;
6   
7   /***
8    * 
9    * @author Sean C. Sullivan
10   *
11   * 
12   * 
13   */
14  public class DataAccessException extends java.lang.RuntimeException
15  {
16  	public DataAccessException(String msg)
17  	{
18  		super(msg);
19  	}
20  
21  	public DataAccessException(Throwable t)
22  	{
23  		super(t);
24  	}
25  
26  	public DataAccessException(String message, Throwable t)
27  	{
28  		super(message, t);
29  	}
30  
31  }