Class AssetManagerException
The exception that is thrown when an Asset Manager error occurs.
Inherited Members
Namespace: Unity.AssetManager.Editor
Assembly: Unity.AssetManager.Core.Editor.dll
Syntax
[Serializable]
public class AssetManagerException : Exception, _Exception, ISerializable
Constructors
AssetManagerException()
Initializes a new instance of the Unity.AssetManager.AssetManagerException class.
Declaration
public AssetManagerException()
AssetManagerException(SerializationInfo, StreamingContext)
Protected constructor used for serialization
Declaration
protected AssetManagerException(SerializationInfo info, StreamingContext context)
Parameters
| Type | Name | Description |
|---|---|---|
| SerializationInfo | info | The SerializationInfo to populate with data. |
| StreamingContext | context | The destination (see StreamingContext) for this serialization. |
AssetManagerException(string)
Initializes a new instance of the Unity.AssetManager.AssetManagerException class.
Declaration
public AssetManagerException(string message)
Parameters
| Type | Name | Description |
|---|---|---|
| string | message | The error message that explains the reason for the exception. |
AssetManagerException(string, Exception)
Initializes a new instance of the Unity.AssetManager.AssetManagerException class.
Declaration
public AssetManagerException(string message, Exception innerException)
Parameters
| Type | Name | Description |
|---|---|---|
| string | message | The error message that explains the reason for the exception. |
| Exception | innerException | The exception that is the cause of the current exception. |