1 /*
2 @See License.txt@
3 */
4
5 package spellcast.ui;
6
7 /***
8 *
9 * @author Barrie Treloar
10 */
11 public class ImageNotAvailableException extends RuntimeException
12 {
13 public ImageNotAvailableException( String s )
14 {
15 super( s );
16 }
17 }
18