Constructors Summary |
---|
public BackupException(String s)Constructs a BackupException with a possibly i18n'd detail message.
super(StringHelper.get(s));
|
public BackupException(String s, Object o)
super(StringHelper.get(s, o));
|
public BackupException(String s, Throwable t)
super(StringHelper.get(s), t);
|
public BackupException(String s, Throwable t, Object o)
super(StringHelper.get(s, o), t);
|