KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > blandware > atleap > webapp > menu > LoadableResourceException


1 package com.blandware.atleap.webapp.menu;
2
3
4 /**
5  * <p>Thrown when some resource could not be loaded</p>
6  * <p>This class was copied from Struts Menu.</p>
7  * <p><a HREF="LoadableResourceException.java.htm"><i>View Source</i></a></p>
8  *
9  * @author Scott Sayles
10  */

11 public class LoadableResourceException extends Exception JavaDoc {
12     //~ Constructors ===========================================================
13

14     /**
15      * Creates new <code>LoadableResourceException</code> without detail message.
16      */

17     public LoadableResourceException() {
18     }
19
20     /**
21      * Constructs an <code>LoadableResourceException</code> with the specified detail message.
22      *
23      * @param msg the detail message.
24      */

25     public LoadableResourceException(String JavaDoc msg) {
26         super(msg);
27     }
28 }
29
Popular Tags