Class InvalidSystemException
Thrown when a system in use is no longer valid and needs to be reinitialized. For rare edge cases where we can’t safely and silently reinitialize a system. If a system is invalid because its account is invalid, throw InvalidAccountException instead.
Implements
Inherited Members
Namespace: Unity.PlatformToolkit
Assembly: Unity.PlatformToolkit.dll
Syntax
public class InvalidSystemException : InvalidOperationException, ISerializable
Constructors
InvalidSystemException()
Construct an InvalidSystemException with no message.
Declaration
public InvalidSystemException()
InvalidSystemException(string)
Construct an InvalidSystemException with a message.
Declaration
public InvalidSystemException(string message)
Parameters
| Type | Name | Description |
|---|---|---|
| string | message | The message to include with the exception. |