Table of Contents

Class NotFoundError

Namespace
Rascal.Errors
Assembly
Rascal.dll

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

key object

The key corresponding to the thing which wasn't found.

message string

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.