KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > sapia > resource > ResourceNotFoundException


1 package org.sapia.resource;
2
3 import java.io.IOException JavaDoc;
4
5 /**
6  * Thrown when a resource could not be found.
7  *
8  * @see ResourceHandler
9  *
10  * @author yduchesne
11  */

12 public class ResourceNotFoundException extends IOException JavaDoc{
13   
14   /** Creates a new instance of ResourceNotFoundException */
15   public ResourceNotFoundException(String JavaDoc msg) {
16     super(msg);
17   }
18   
19 }
20
Popular Tags