Documentation
    Preparing search index...

    Represents the structure of the error returned by the middleware. The stacktrace is only included in the response in development mode.

    interface ErrorResponse {
        message: string;
        stacktrace?: string;
    }
    Index

    Properties

    Properties

    message: string

    The error message

    stacktrace?: string

    The error stack trace (only included in development mode)