1 package org.myoodb.exception; 25 26 public class BackupException extends MaintenanceException 27 { 28 public BackupException() 29 { 30 } 31 32 public BackupException(String message) 33 { 34 super(message); 35 } 36 37 public BackupException(Throwable cause) 38 { 39 super(cause); 40 } 41 42 public BackupException(String message, Throwable cause) 43 { 44 super(message, cause); 45 } 46 } 47 | Popular Tags |