Table of Contents

Class UnknownErrorException

Namespace
Minds.SDK
Assembly
Minds.SDK.dll

Represents an exception that is thrown when an unknown error occurs during an API request.

public class UnknownErrorException : Exception, ISerializable, _Exception
Inheritance
UnknownErrorException
Implements
Inherited Members

Constructors

UnknownErrorException()

Initializes a new instance of the UnknownErrorException class.

public UnknownErrorException()

UnknownErrorException(string)

Initializes a new instance of the UnknownErrorException class with a specified error message.

public UnknownErrorException(string message)

Parameters

message string

The error message that explains the reason for the exception.

UnknownErrorException(string, Exception)

Initializes a new instance of the UnknownErrorException class with a specified error message and a reference to the inner exception that is the cause of this exception.

public UnknownErrorException(string message, Exception inner)

Parameters

message string

The error message that explains the reason for the exception.

inner Exception

The exception that is the cause of the current exception.