Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public class CustomExceptionData {
  2.  
  3. public String name;
  4. public String message;
  5. public Integer code;
  6.  
  7. public CustomExceptionData(String name, String message, Integer code) {
  8. this.name = name;
  9. this.message = message;
  10. this.code = code;
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement