projects
/
OpenSRF.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
implemented enough of the stack/session logic to make stateless requests and receive...
[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
}