
com.blade.exception.BadRequestException Maven / Gradle / Ivy
package com.blade.exception;
/**
* @author biezhi
* @date 2017/9/19
*/
public class BadRequestException extends BladeException {
private static final int STATUS = 400;
private static final String NAME = "Bad Request";
public BadRequestException() {
super(STATUS, NAME);
}
public BadRequestException(String message) {
super(STATUS, NAME, message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy