Handle when server doesn't send the expected response

This commit is contained in:
Laurent Clouet
2016-09-11 13:46:12 +02:00
parent 0d660b023b
commit 018382ac6f
4 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package com.sheepit.client.exception;
public class FermeExceptionBadResponseFromServer extends FermeException {
public FermeExceptionBadResponseFromServer() {
super();
}
public FermeExceptionBadResponseFromServer(String message_) {
super(message_);
}
}