]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/java/org/opensrf/util/ConfigException.java
LP1999823: Bump libtool library version
[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     public ConfigException(String info, Throwable t) {
12         super(info, t);
13     }
14 }