AssetDataUnavailableException Constructor (String, Int32, Object, Exception) |
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,
Exception innerException
)
Public Sub New (
message As String,
assetIndex As Integer,
assetInstance As Object,
innerException As Exception
)
public:
AssetDataUnavailableException(
String^ message,
int assetIndex,
Object^ assetInstance,
Exception^ innerException
)
new :
message : string *
assetIndex : int *
assetInstance : Object *
innerException : Exception -> 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. - innerException
- Type: SystemException
The exception that is the cause of the current exception, or if no inner exception is specified.
See Also