KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jzonic > jlo > reader > ReaderException


1 /*
2  * LogConfigurationReaderException.java
3  *
4  * Created on 4. Mai 2003, 20:48
5  */

6
7 package org.jzonic.jlo.reader;
8
9 /**
10  *
11  * @author Andreas Mecky andreas.mecky@xcom.de
12  * @author Terry Dye terry.dye@xcom.de
13  */

14 public class ReaderException extends java.lang.Exception JavaDoc {
15     
16     /**
17      * Creates a new instance of <code>LogConfigurationReaderException</code> without detail message.
18      */

19     public ReaderException() {
20     }
21     
22     
23     /**
24      * Constructs an instance of <code>LogConfigurationReaderException</code> with the specified detail message.
25      * @param msg the detail message.
26      */

27     public ReaderException(String JavaDoc msg) {
28         super(msg);
29     }
30 }
31
Popular Tags