ProjectAres/API/api/src/main/java/tc/oc/api/exceptions/Forbidden.java

15 lines
294 B
Java
Raw Normal View History

2017-01-30 01:43:34 +01:00
package tc.oc.api.exceptions;
import javax.annotation.Nullable;
import tc.oc.api.message.types.Reply;
/**
* An API request was not allowed
*/
public class Forbidden extends ApiException {
public Forbidden(String message, @Nullable Reply reply) {
super(message, reply);
}
}