Interface RnError<ErrObj>

Represents an error object containing a message and error details.

interface RnError<ErrObj> {
    error: ErrObj;
    message: string;
}

Type Parameters

  • ErrObj

    The type of the error object

Properties

Properties

error: ErrObj

The error object containing additional error details

message: string

The error message