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