Class RecordNotFoundException
Represents an expection that will be raised when a call to the HuduAPI results in no record being found
Inheritance
System.Object
System.Exception
RecordNotFoundException
Namespace: HuduAPI.Endpoints.Exceptions
Assembly: HuduAPI.dll
Syntax
public class RecordNotFoundException : Exception, ISerializable
Constructors
RecordNotFoundException()
Initializes a new instance of the RecordNotFoundException class.
Declaration
public RecordNotFoundException()
RecordNotFoundException(String)
Initializes a new instance of the RecordNotFoundException class.
Declaration
public RecordNotFoundException(string message)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | message | The message that describes the error. |
RecordNotFoundException(String, Exception)
Initializes a new instance of the RecordNotFoundException class.
Declaration
public RecordNotFoundException(string message, Exception inner)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | message | The message that describes the error. |
| System.Exception | inner | The inner exception. |
See Also
System.Exception