public class BackupException extends Exception
the class features built-in i18n. I.e. any String passed to a BackupException constructor will first be used as a key into the i18n Strings. If it is not found, the String itself will be used as the messsage.
| Constructor and Description |
|---|
BackupException(String s)
Constructs a BackupException with a possibly i18n'd detail message.
|
BackupException(String s,
Object o) |
BackupException(String s,
Throwable t) |
BackupException(String s,
Throwable t,
Object o) |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic BackupException(String s)
s - the detail message which is first checked for as a key for an i18n string.
If not found it will be used as the message itself.public BackupException(String s, Object o)
s - the detail message which is first checked for as a key for an i18n string.
If not found it will be used as the message itself.o - the parameter for the recovered i18n string. I.e. "{0}" will be
replaced with o.toString(). If there is no i18n string located
o will be ignored.public BackupException(String s, Throwable t)
s - the detail message which is first checked for as a key for an i18n string.
If not found it will be used as the message itself.t - the cause.public BackupException(String s, Throwable t, Object o)
s - the detail message which is first checked for as a key for an i18n string.
If not found it will be used as the message itself.t - the cause.o - the parameter for the recovered i18n string. I.e. "{0}" will be
replaced with o.toString(). If there is no i18n string located
o will be ignored.Copyright © 2017–2019 Eclipse Foundation. All rights reserved.