isType
Versionshinweise | 21.2 |
---|
Code
|
Beschreibung
Prüft, ob die Exception zu einem der als Parameter übergebenen Typen passt.
Parameter
- exception - Die ScriptingException, deren Typ geprüft werden soll.
- types - Die Typen die geprüft werden sollen.
Rückgabe
true, wenn einer der Typen zur ScriptingException passt, sonst false .
Beispiele
try
{
throw new ScriptingException("Test");
}
catch(ScriptingException e)
{
boolean isType = ScriptUtils.isType(e,
ExceptionTypeConstants.DOC_ERRORCODE_TEMPLATE_NOT_NATIVE,
ExceptionTypeConstants.DOC_ERRORCODE_TEMPLATE_NOT_VALID);
...
}