blob: 3a42e9999fdc7c1b73262ec4cd92280dcab66cdb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
package com.juick.api.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 {
}
|