AssetDataUnavailableException Constructor (String, Int32, Object) |
Initializes a new instance of the
AssetDataUnavailableException class
with a specific error message and a reference to the asset which caused the exception.
Namespace:
AGI.Foundation.Coverage
Assembly:
AGI.Foundation.Spatial (in AGI.Foundation.Spatial.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public AssetDataUnavailableException(
string message,
int assetIndex,
Object assetInstance
)
Public Sub New (
message As String,
assetIndex As Integer,
assetInstance As Object
)
public:
AssetDataUnavailableException(
String^ message,
int assetIndex,
Object^ assetInstance
)
new :
message : string *
assetIndex : int *
assetInstance : Object -> AssetDataUnavailableException
Parameters
- message
- Type: SystemString
The error message that explains the reason for the exception. - assetIndex
- Type: SystemInt32
The index of the asset that caused the exception, based on the order
of the assets when the computation was created. - assetInstance
- Type: SystemObject
A reference to the asset that caused the exception.
See Also