aboutsummaryrefslogtreecommitdiff
path: root/juick-server/src/main/java/com/juick/server/util/HttpBadRequestException.java
blob: 5c0593ec2a7525d5149b55a97d4a516c9d40d0a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.juick.server.util;

import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;

/**
 * Created by vt on 24/11/2016.
 */
@ResponseStatus(value = HttpStatus.BAD_REQUEST)
public class HttpBadRequestException extends RuntimeException {
    public HttpBadRequestException() {
        super("", null, false, false);
    }
}