]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/java/org/opensrf/MethodException.java
Safer casting in java config parsing
[OpenSRF.git] / src / java / org / opensrf / MethodException.java
1 package org.opensrf;
2
3 /**
4  * Thrown when the server responds with a method exception.
5  */
6 public class MethodException extends Exception {
7     public MethodException(String info) {
8         super(info);
9     }
10     public MethodException(Throwable cause) {
11         super(cause);
12     }
13 }
14