AssetException Class
Namespace: Stride.Core.AssetsAssembly: Stride.Core.Assets.dll
An AssetException.
public class AssetException : Exception, ISerializable, _Exception
Name | Description | |
---|---|---|
Constructors | ||
AssetException() | Initializes a new instance of the AssetException class. |
|
AssetException(String) | Initializes a new instance of the System.Exception class with a specified error message. |
|
AssetException(String, Exception) | Initializes a new instance of the System.Exception class with a specified error message and a reference to the inner exception that is the cause of this exception. |
|
AssetException(String, Object[]) | Initializes a new instance of the System.Exception class with a specified error message. |
Constructors
AssetException()
Initializes a new instance of the AssetException class.
public AssetException()
AssetException(String)
Initializes a new instance of the System.Exception class with a specified error message.
public AssetException(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The message that describes the error. |
AssetException(String, Exception)
Initializes a new instance of the System.Exception class with a specified error message and a reference to the inner exception that is the cause of this exception.
public AssetException(string message, Exception innerException)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The error message that explains the reason for the exception. |
System.Exception | innerException | The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. |
AssetException(String, Object[])
Initializes a new instance of the System.Exception class with a specified error message.
public AssetException(string message, params object[] formattedArguments)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | The message that describes the error. |
System.Object[] | formattedArguments | The formatted arguments. |