1 43 package net.jforum.exceptions; 44 45 49 public class DatabaseException extends RuntimeException { 50 public DatabaseException(String message) { 51 super(message); 52 } 53 54 public DatabaseException(String message, Throwable t) { 55 super(message, t); 56 this.setStackTrace(t.getStackTrace()); 57 } 58 59 public DatabaseException(Throwable t) { 60 super(t); 61 this.setStackTrace(t.getStackTrace()); 62 } 63 } 64 | Popular Tags |