Created
April 24, 2020 16:52
-
-
Save Raouf25/ff89f2bb31caad686e2f8dea8374fb99 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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