1 23 24 package org.continuent.sequoia.common.exceptions; 25 26 32 public class VirtualDatabaseException extends Exception  33 { 34 private static final long serialVersionUID = -5359061849424706682L; 35 36 39 public VirtualDatabaseException() 40 { 41 } 42 43 48 public VirtualDatabaseException(String message) 49 { 50 super(message); 51 } 52 53 58 public VirtualDatabaseException(Throwable cause) 59 { 60 super(cause.getMessage(), cause); 61 } 62 63 69 public VirtualDatabaseException(String message, Throwable cause) 70 { 71 super(message, cause); 72 } 73 } | Popular Tags |