]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/java/org/opensrf/util/ConfigException.java
fixed some doc strings. added sample makefile
[OpenSRF.git] / src / java / org / opensrf / util / ConfigException.java
1 package org.opensrf.util;
2
3 /**
4  * Thrown by the Config module when a user requests a configuration
5  * item that does not exist
6  */
7 public class ConfigException extends Exception {
8     public ConfigException(String info) {
9         super(info);
10     }
11 }