Uses of Class
ch.ivyteam.ivy.scripting.exceptions.IvyScriptException
-
Packages that use IvyScriptException Package Description ch.ivyteam.ivy.process.extension.impl ch.ivyteam.ivy.scripting.exceptions.invocation -
-
Uses of IvyScriptException in ch.ivyteam.ivy.process.extension.impl
Methods in ch.ivyteam.ivy.process.extension.impl that throw IvyScriptException Modifier and Type Method Description protected voidAbstractProcessExtension. declareAndInitializeVariable(IIvyScriptContext context, String variableName, String variableTypeName, Object initValue)Declares a variable inside the given context and initializes it with the given valueprotected ObjectAbstractProcessExtension. executeIvyScript(IIvyScriptContext context, IIvyScriptInstruction instruction)Executes an ivy script instruction.protected ObjectAbstractProcessExtension. executeIvyScript(IIvyScriptContext context, String script)Executes an ivy script scriptprotected ObjectAbstractProcessExtension. getProcessDataField(IIvyScriptContext context, String processDataField)Gets the value of the given process data fieldprotected IIvyScriptInstructionAbstractProcessExtension. parseIvyScript(IIvyScriptContext context, String script, String returnTypeName)Parses an ivy script scriptprotected voidAbstractProcessExtension. setProcessDataField(IIvyScriptContext context, String processDataField, Object value)Sets the given value to the given process data field.protected voidAbstractProcessExtension. setVariableValue(IIvyScriptContext context, String variableName, Object value)Sets the value of a variable in the given the context -
Uses of IvyScriptException in ch.ivyteam.ivy.scripting.exceptions.invocation
Subclasses of IvyScriptException in ch.ivyteam.ivy.scripting.exceptions.invocation Modifier and Type Class Description classIvyScriptCastExceptionIvyScript exception thrown if an attempt is made for an impossible cast.classIvyScriptConstructorInvocationExceptionAn IvyScript-Exception thrown if a called constructor throws an exception.classIvyScriptConstructorNotFoundExceptionException thrown by IvyScript if default initialization is not possible.classIvyScriptFieldNotFoundExceptionException thrown if it is tryed to access a non existing field.classIvyScriptInitializationExceptionException thrown by IvyScript if a constructor is not found.classIvyScriptInvocationExceptionAn ivyScriptException thrown if a called Java-Function throws an exception.classIvyScriptMethodInvocationExceptionAn IvyScript-Exception thrown if a called method throws an exception.classIvyScriptVariableAlreadyDeclaredExceptionException thrown if it is tryed to declare an already declared variable in a context.classIvyScriptVariableNotFoundExceptionException thrown if it is tryed to access a non existing variable.
-