KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > espada > bugtracker > util > PropertiesNotReadException


1 /*
2  * PropertiesNotReadException.java
3  *
4  * Created on April 17, 2001, 1:25 AM
5  */

6
7 package com.espada.bugtracker.util;
8
9 /**
10  *This is thrown if you try and get a set of properties
11  *before initializing the PropertyFactory.
12  *
13  * @author Manik Surtani (manik@post1.com)
14  * @since 0.2beta3
15  */

16 public class PropertiesNotReadException extends java.lang.RuntimeException JavaDoc {
17
18     /**
19  * Creates new <code>PropertiesNotReadException</code> without detail message.
20      */

21     public PropertiesNotReadException() {
22     }
23
24
25     /**
26  * Constructs an <code>PropertiesNotReadException</code> with the specified detail message.
27      * @param msg the detail message.
28      */

29     public PropertiesNotReadException(String JavaDoc msg) {
30         super(msg);
31     }
32 }
33
34
35
Popular Tags