]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/java/org/opensrf/MethodException.java
bf473132bf4ddd48075f65fa711668c2d7e2de12
[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 }
11