blob: 942d90e2cf44d85d83799bfcc9ee1a6340e21b69 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package com.juick.server.util;
import org.apache.commons.lang3.StringUtils;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;
/**
* Created by vt on 24/11/2016.
*/
@ResponseStatus(value = HttpStatus.NOT_FOUND)
public class HttpNotFoundException extends RuntimeException {
public HttpNotFoundException() {
super(StringUtils.EMPTY, null, false, false);
}
}
|