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