Instead of giving generic no job status, the server now give more detailed status
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package com.sheepit.client.exception;
|
||||
|
||||
public class FermeExceptionServerInMaintenance extends FermeException {
|
||||
public FermeExceptionServerInMaintenance() {
|
||||
super();
|
||||
}
|
||||
|
||||
public FermeExceptionServerInMaintenance(String message_) {
|
||||
super(message_);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package com.sheepit.client.exception;
|
||||
|
||||
public class FermeExceptionServerOverloaded extends FermeException {
|
||||
public FermeExceptionServerOverloaded() {
|
||||
super();
|
||||
}
|
||||
|
||||
public FermeExceptionServerOverloaded(String message_) {
|
||||
super(message_);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user