Returned when the resource addressed by the request URL does not exist.

interface ResourceNotFoundError {
    code: "ResourceNotFound";
    message: string;
    [key: string]: any;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: any

Properties

Properties

code: "ResourceNotFound"

Error identifier.

message: string

"The Resource with ID $resourceId was not found."