View Javadoc

1   /*
2    * Created on 14-nov-2004
3    */
4   package org.hardcode.juf;
5   
6   import java.io.IOException;
7   
8   /***
9    * @author Fernando González Cortés
10   */
11  public class NoServerFileException extends IOException {
12  
13  	/***
14  	 * 
15  	 */
16  	public NoServerFileException() {
17  		super();
18  	}
19  	/***
20  	 * @param arg0
21  	 */
22  	public NoServerFileException(String arg0) {
23  		super(arg0);
24  	}
25  }