Guest User

Untitled

a guest
Aug 23rd, 2015
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. @SoftwareIndependent
  2. public class DatabaseException extends Exception {
  3.  
  4.     private static final long serialVersionUID = -6160393688579298515L;
  5.  
  6.     public DatabaseException(Exception e) {
  7.         super(e.getMessage(), e);
  8.     }
  9.  
  10.     public DatabaseException() {
  11.         super();
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment