Guest User

Untitled

a guest
Sep 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. public class TransactionalRollBackException extends Exception {
  2.  
  3. private static final long serialVersionUID = 3600629152155296601L;
  4.  
  5. public TransactionalRollBackException() {
  6. super();
  7. }
  8.  
  9. public TransactionalRollBackException(String message) {
  10. super(message);
  11. }
  12.  
  13. public TransactionalRollBackException(Throwable cause) {
  14. super(cause);
  15. }
  16.  
  17. public TransactionalRollBackException(String message, Throwable cause) {
  18. super(message, cause);
  19. }
  20.  
  21. public TransactionalRollBackException(String message, Throwable cause, boolean enableSuppression,
  22. boolean writableStackTrace) {
  23. super(message, cause, enableSuppression, writableStackTrace);
  24. }
Add Comment
Please, Sign In to add comment