1 23 24 29 30 31 package com.sun.enterprise.config.backup; 32 33 import com.sun.enterprise.config.backup.util.StringUtils; 34 35 46 47 public class BackupException extends Exception  48 { 49 54 public BackupException(String s) 55 { 56 super(StringHelper.get(s)); 57 } 58 59 66 public BackupException(String s, Object o) 67 { 68 super(StringHelper.get(s, o)); 69 } 70 71 76 public BackupException(String s, Throwable t) 77 { 78 super(StringHelper.get(s), t); 79 } 80 81 89 public BackupException(String s, Throwable t, Object o) 90 { 91 super(StringHelper.get(s, o), t); 92 } 93 } 94 | Popular Tags |