Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Error

import type { Error } from "https://googleapis.deno.dev/v1/datastream:v1.ts";

Represent a user-facing Error.

interface Error {
details?: {
[key: string]: string;
}
;
errorTime?: Date;
errorUuid?: string;
message?: string;
reason?: string;
}

§Properties

§
details?: {
[key: string]: string;
}
[src]

Additional information about the error.

§
errorTime?: Date
[src]

The time when the error occurred.

§
errorUuid?: string
[src]

A unique identifier for this specific error, allowing it to be traced throughout the system in logs and API responses.

§
message?: string
[src]

A message containing more information about the error that occurred.

§
reason?: string
[src]

A title that explains the reason for the error.