Skip to main content
Skip table of contents

getErrorType

Versionshinweise

21.2

Code

String ScriptUtils.getErrorType(ScriptingException exception)

Beschreibung

Gibt den Fehler Typ der Exception zurück.

Parameter

  • exception - Die ScriptingException, die geprüft werden soll.

Rückgabe

Den Fehler Typ.

Beispiele

JAVA
try
{
  throw new ScriptingException("Test");
}
catch(ScriptingException e)
{
  String errorType = ScriptUtils.getErrorType(e);
  ...
}
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.