01: /*
02: * LogConfigurationReaderException.java
03: *
04: * Created on 4. Mai 2003, 20:48
05: */
06:
07: package org.jzonic.jlo.reader;
08:
09: /**
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 {
15:
16: /**
17: * Creates a new instance of <code>LogConfigurationReaderException</code> without detail message.
18: */
19: public ReaderException() {
20: }
21:
22: /**
23: * Constructs an instance of <code>LogConfigurationReaderException</code> with the specified detail message.
24: * @param msg the detail message.
25: */
26: public ReaderException(String msg) {
27: super(msg);
28: }
29: }
|