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

Exception

import type { Exception } from "https://googleapis.deno.dev/v1/firebasecrashlytics:v1alpha.ts";

A Java or Javascript exception and its stacktrace. Only from Android or web apps.

interface Exception {
blamed?: boolean;
exceptionMessage?: string;
frames?: Frame[];
nested?: boolean;
subtitle?: string;
title?: string;
type?: string;
}

§Properties

§
blamed?: boolean
[src]

True when the Crashlytics analysis has determined that this thread is where the fault occurred.

§
exceptionMessage?: string
[src]

A message associated with the exception.

§
frames?: Frame[]
[src]

The frames in the exception's stacktrace.

§
nested?: boolean
[src]

True for all but the last-thrown exception (i.e. the first record).

§
subtitle?: string
[src]

The subtitle of the exception.

§
title?: string
[src]

The title of the exception.

§
type?: string
[src]

The exception type e.g. java.lang.IllegalStateException.