next-api-utils
    Preparing search index...

    Type Alias BaseException<T>

    A base interface for representing known application exceptions which should be sent to the client when thrown.

    type BaseException<T = unknown> = {
        "[TO_RESPONSE]": () => NextResponse<T>;
    }

    Type Parameters

    • T = unknown
    Index

    Properties

    Properties

    "[TO_RESPONSE]": () => NextResponse<T>

    A function that converts this exception to a next/server#NextResponse containing information about the exception.