ScriptException Class

Custom Exception for use with building scripts. If a script fails during a build this will be thrown This exception will contain information about what the error is and where it occurred within the script.
Inheritance Hierarchy
SystemObject
  SystemException
    Dundas.BI.ScriptingScriptException

Namespace:  Dundas.BI.Scripting
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax
public sealed class ScriptException : Exception

The ScriptException type exposes the following members.

Constructors
  NameDescription
Public methodScriptException
Initializes a new instance of the ScriptException class.
Public methodScriptException(String)
Initializes a new instance of the ScriptException class.
Public methodScriptException(String, Exception)
Initializes a new instance of the ScriptException class.
Public methodScriptException(ScriptExceptionType, String, Exception)
Initializes a new instance of the ScriptException class.
Top
Properties
  NameDescription
Public propertyColumn
Gets the column number in the script where exception occurred.
Public propertyExceptionType
Gets the exception type.
Public propertyLine
Gets the line number in the script where exception occurred.
Public propertyMessage
Gets a message that describes the current exception.
(Overrides ExceptionMessage.)
Public propertyShortMessage
Gets the short message (no line number).
Public propertyTokenText
Gets the token text.
Top
Extension Methods
  NameDescription
Public Extension MethodGetDetailsMessage
Gets the details message associated with an Exception.
(Defined by ExceptionExtensions.)
Public Extension MethodGetErrorCode
Gets the error code associated with an Exception.
(Defined by ExceptionExtensions.)
Public Extension MethodGetHelpTopicReference
Gets the help topic reference associated with an Exception.
(Defined by ExceptionExtensions.)
Public Extension MethodGetSupplementalMessage
Gets the supplemental message associated with an Exception.
(Defined by ExceptionExtensions.)
Public Extension MethodSetAsDisplayException
Marks the exception as the "display" exception.
(Defined by ExceptionExtensions.)
Public Extension MethodSetDetailsMessage
Sets the details message on an exception object.
(Defined by ExceptionExtensions.)
Public Extension MethodSetErrorCode
Sets the error code on an exception object.
(Defined by ExceptionExtensions.)
Public Extension MethodSetHelpTopicReference
Sets an associated help topic reference on an exception object.
(Defined by ExceptionExtensions.)
Public Extension MethodSetSupplementalMessage
Sets the supplemental message on an exception object.
(Defined by ExceptionExtensions.)
Top
See Also