Skip to content

Instantly share code, notes, and snippets.

@Raouf25
Created April 24, 2020 16:52
Show Gist options
  • Save Raouf25/ff89f2bb31caad686e2f8dea8374fb99 to your computer and use it in GitHub Desktop.
Save Raouf25/ff89f2bb31caad686e2f8dea8374fb99 to your computer and use it in GitHub Desktop.
public class ResourceNotFoundException extends BackendException {
public ResourceNotFoundException(Integer id, String message) {
super(ErrorEnum.RESOURCE_NOT_FOUND, "%s id = %s not found", message, id);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment