Class NotFoundError
An error which represents something which wasn't found.
public sealed class NotFoundError : Error- Inheritance
- 
      
      
      NotFoundError
- Inherited Members
- Extension Methods
Constructors
NotFoundError(object?, string)
An error which represents something which wasn't found.
public NotFoundError(object? key, string message)Parameters
- keyobject
- The key corresponding to the thing which wasn't found. 
- messagestring
- A message which describes the thing which wasn't found. 
Properties
Key
The key corresponding to the thing which wasn't found.
public object? Key { get; }Property Value
- object
- An error which represents something which wasn't found.
Message
The message used to display the error.
public override string Message { get; }Property Value
- string
- An error which represents something which wasn't found.