13 lines
403 B
Java
13 lines
403 B
Java
package com.iconplus.smartproc.exception;
|
|
|
|
import org.springframework.http.HttpStatus;
|
|
import org.springframework.web.bind.annotation.ResponseStatus;
|
|
|
|
@ResponseStatus(value = HttpStatus.NOT_FOUND)
|
|
public class ResourceNotFoundException extends RuntimeException {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
public ResourceNotFoundException(String message) {
|
|
super(message);
|
|
}
|
|
} |