Fixed HTTP-client query-string handling bug.
[doldaconnect.git] / dolda / dolcon / AuthException.java
1 package dolda.dolcon;
2
3 public class AuthException extends Exception {
4     public AuthException(String msg) {
5         super(msg);
6     }
7
8     public AuthException(String msg, Throwable cause) {
9         super(msg, cause);
10     }
11 }