ScriptExceptionType Enumeration |
Script exception type.
Namespace:
Dundas.BI.Scripting
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntaxpublic enum ScriptExceptionType
Public Enumeration ScriptExceptionType
public enum class ScriptExceptionType
Members|
| Member name | Value | Description |
|---|
| InvalidObject | 0 |
Invalid object.
|
| MissingClosingBracket | 1 |
Missing closing bracket.
|
| MissingOpeningBracket | 2 |
Missing opening bracket.
|
| SyntaxError | 3 |
Syntax error.
|
| InvalidStatement | 4 |
Invalid statement. Only assignment, call, increment, decrement, and new object expressions can be used as a statement.
|
| UnknownBuildError | 5 |
Unexpected error.
|
| MethodAlreadyDefined | 6 |
Method is already defined with the same parameter types.
|
| ParamArrayHaveDefault | 7 |
The parameter array have default.
|
| ParamArrayMustBeLast | 8 |
Cannot specify a default value for a parameter array.
|
| ParamArrayMustBeOneDim | 9 |
The parameter array must be a single dimensional array.
|
| ParamOptionalBeforeRequired | 10 |
Optional parameters must appear after all required parameters.
|
| MethodMustReturnValue | 11 |
The method must return a value.
|
| DivideByZero | 12 |
Division by zero.
|
| InvalidClass | 13 |
Invalid class.
|
| InvalidCommand | 14 |
Invalid command.
|
| ObjectNotFound | 15 |
Object not found.
|
| RuntimeError | 16 |
Runtime error.
|
| UnableToCreateObject | 17 |
Unable to create object.
|
| AmbiguousCall | 18 |
Ambiguous method call.
|
| InvalidLiteral | 19 |
Invalid literal.
|
| InvalidOperatorInputs | 20 |
Invalid operator inputs.
|
| InvalidParameters | 21 |
Invalid parameters.
|
| InvalidType | 22 |
Invalid type.
|
| MethodNotFound | 23 |
Method not found.
|
| PropertyNotFound | 24 |
Property not found.
|
| IndexerNotFound | 25 |
Indexer not found.
|
See Also