Show / Hide Table of Contents

Class ConditionFailedException

Exception thrown when a condition check has failed, indicating that request execution should halt

Inheritance
Object
Exception
ApiException
ConditionFailedException
Implements
ISerializable
Namespace: Seltzr.Exceptions
Assembly: Seltzr.dll
Syntax
C#
public class ConditionFailedException : ApiException, ISerializable

Constructors

| Improve this Doc View Source

ConditionFailedException()

Initializes a new instance of the ConditionFailedException class

C#
public ConditionFailedException()
| Improve this Doc View Source

ConditionFailedException(String)

Initializes a new instance of the ConditionFailedException class

C#
public ConditionFailedException(string message)
Parameters
messageString

A message explaining the exception

| Improve this Doc View Source

ConditionFailedException(String, Exception)

Initializes a new instance of the ConditionFailedException class

C#
public ConditionFailedException(string message, Exception inner)
Parameters
messageString

A message explaining the exception

innerException

The inner exception that caused this one

| Improve this Doc View Source

ConditionFailedException(String, Exception, Int32)

Initializes a new instance of the ConditionFailedException class

C#
public ConditionFailedException(string message, Exception inner, int errorCode)
Parameters
messageString

A message explaining the exception

innerException

The inner exception that caused this one

errorCodeInt32

A unique error code for the error that occurred

| Improve this Doc View Source

ConditionFailedException(String, Int32)

Initializes a new instance of the ConditionFailedException class

C#
public ConditionFailedException(string message, int errorCode)
Parameters
messageString

A message explaining the exception

errorCodeInt32

A unique error code for the error that occurred

Implements

System.Runtime.Serialization.ISerializable
  • Improve this Doc
  • View Source
Back to top Generated by DocFX