1 package org.riverock.dbrevision.exception; 2 3 /** 4 * Generic db revision exception 5 * 6 * @author Sergei Maslyukov 7 * Date: 21.12.2006 8 * Time: 20:43:06 9 * <p/> 10 * $Id$ 11 */ 12 public class DbRevisionException extends RuntimeException { 13 14 /** 15 * Empty constructor 16 */ 17 public DbRevisionException(){ 18 super(); 19 } 20 21 /** 22 * Constructor 23 * @param s describing exception 24 */ 25 public DbRevisionException(String s){ 26 super(s); 27 } 28 29 /** 30 * Constructor 31 * 32 * @param cause cause exception 33 */ 34 public DbRevisionException(Throwable cause){ 35 super(cause); 36 } 37 38 /** 39 * Constructor 40 * 41 * @param s describing exception 42 * @param cause cause exception 43 */ 44 public DbRevisionException(String s, Throwable cause){ 45 super(s, cause); 46 } 47 } 48 49