View Javadoc

1   /***
2    * 
3    */
4   package org.bejug.javacareers.common.util;
5   
6   /***
7    * @author admin
8    */
9   public class FileUtilitiesException extends RuntimeException {
10  	
11  	/***
12  	 * 
13  	 * @param info is the info to be kept
14  	 */
15  	public FileUtilitiesException(String info){
16  		super(info);
17  	}
18  	
19  	/***
20  	 * 
21  	 * @param info is the info to be kept
22  	 * @param t is the throwable to be kept
23  	 */
24  	public FileUtilitiesException(String info, Throwable t){
25  		super(info, t);
26  	}
27  }