ErrorDetails: {
    details?: unknown;
    message?: string;
    name?: string;
    stack?: string;
    type?: AwSignerErrorType;
    [key: string]: unknown;
}

Type representing additional details about an error. This can include nested errors, custom properties, or other metadata.

Type declaration

  • [key: string]: unknown

    Allows for additional custom properties.

  • Optional details?: unknown

    Additional details about the error.

  • Optional message?: string

    The error message.

  • Optional name?: string

    The name of the error.

  • Optional stack?: string

    The stack trace of the error.

  • Optional type?: AwSignerErrorType

    The type of the error, if it is an AwSignerError.