Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. package nl.abnamro.ignition.api.common.util;
  2.  
  3. /**
  4. *
  5. *
  6. * A wrapper for exceptions occuring while converting to JSON
  7. *
  8. *
  9. */
  10. public final class JsonConversionException extends RuntimeException {
  11.  
  12. /**
  13. * Handles all exceptions occurred while converting to JSON
  14. * @param message : custom message based on exception
  15. * @param throwable: exception from parent class
  16. */
  17. public JsonConversionException(String message,Throwable throwable) {
  18. super(message,throwable);
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement