1 24 25 package org.objectweb.cjdbc.common.exceptions; 26 27 33 public class VirtualDatabaseException extends Exception  34 { 35 private static final long serialVersionUID = -5359061849424706682L; 36 37 40 public VirtualDatabaseException() 41 { 42 } 43 44 49 public VirtualDatabaseException(String message) 50 { 51 super(message); 52 } 53 54 59 public VirtualDatabaseException(Throwable cause) 60 { 61 super(cause.getMessage()); 62 } 63 64 70 public VirtualDatabaseException(String message, Throwable cause) 71 { 72 super(message, cause); 73 } 74 } | Popular Tags |