Source code: com/further/jaudit/ConfigurationException.java
1 /*
2 * ConfigurationException.java
3 * Copyright (c) 2001, Kristopher Wehner
4 * Created on September 16, 2001, 2:42 PM
5 */
6
7 package com.further.jaudit;
8
9 /**
10 * A configuration exception is raised when the system is unable to parse
11 * the configuration, or there is a logical inconsistency in the configuration
12 * data that makes it not possible to use (such as boolean values for a
13 * fixed-range metric).
14 *
15 * @author Kristopher Wehner <kris@further.com>
16 * @version $Id: ConfigurationException.java,v 1.1.1.1 2001/10/11 16:42:06 krisw Exp $
17 * @since 1.0
18 */
19 public class ConfigurationException extends Exception {
20
21 /**
22 * Creates new <code>ConfigurationException</code> without detail message.
23 */
24 public ConfigurationException() {
25 }
26
27
28 /**
29 * Constructs an <code>ConfigurationException</code> with the specified detail message.
30 * @param msg the detail message.
31 */
32 public ConfigurationException(String msg) {
33 super(msg);
34 }
35 }
36
37