Skip to main content

%Net.Remote.Exception

class %Net.Remote.Exception extends %Exception.AbstractException, %Library.RegisteredObject

Property Inventory

Method Inventory

Properties

property RawData as %String);
Property methods: RawDataDisplayToLogical(), RawDataGet(), RawDataIsValid(), RawDataLogicalToDisplay(), RawDataLogicalToOdbc(), RawDataNormalize(), RawDataSet()
property RemoteError as %String);
Property methods: RemoteErrorDisplayToLogical(), RemoteErrorGet(), RemoteErrorIsValid(), RemoteErrorLogicalToDisplay(), RemoteErrorLogicalToOdbc(), RemoteErrorNormalize(), RemoteErrorSet()

Methods

method DisplayString(pLevel As %Integer = 0) as %String
Inherited description: This returns a string that represents the exception. Users should feel free to modify the format in subclasses.
method StackAsArray(ByRef array) as %Status
Inherited description: This method sets an array that is passed by reference to the execution stack at the time of the exception. The top unsubscripted value is the number of execution levels.

array(n) is a string that indicates how the next level was created. It is empty for the current level. The value may be:
DO - issued a DO command
$$ - called an extrinsic function
XECUTE - issued an XECUTE command
BREAK - entered a debug prompt because of a <BREAK>
ERROR - entered a debug prompt because of an error
$ETRAP - executed a $ETRAP
CALLIN - entered via a callin

array(n,"PLACE") is the location of the last command executed at this level. It is a line reference followed by the command number on that line.

Inherited Members

Inherited Properties

Inherited Methods

FeedbackOpens in a new tab