Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. package com.example.workshop.exceptions;
  2.  
  3. public class EntityNotFoundException extends Exception {
  4.  
  5. public EntityNotFoundException() {
  6. }
  7.  
  8. public EntityNotFoundException(String message) {
  9. super(message);
  10. }
  11.  
  12. public EntityNotFoundException(String message, Throwable cause) {
  13. super(message, cause);
  14. }
  15.  
  16. public EntityNotFoundException(Throwable cause) {
  17. super(cause);
  18. }
  19.  
  20. public EntityNotFoundException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
  21. super(message, cause, enableSuppression, writableStackTrace);
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement