for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
package easytests.api.v1.exceptions;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;
/**
* @author malinink
*/
@ResponseStatus(code = HttpStatus.BAD_REQUEST)
public class BadRequestException extends Exception {
public BadRequestException(String reason) {
super(reason);
}