for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
package com.osomapps.pt;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;
@ResponseStatus(value = HttpStatus.NOT_FOUND)
public class ResourceNotFoundException extends RuntimeException {
public ResourceNotFoundException() {}
public ResourceNotFoundException(String message) {
super(message);
}