Skip to main content
Go to Latest
class AssertionError
extends Error
import { AssertionError } from "https://deno.land/std@0.223.0/assert/assertion_error.ts";

Error thrown when an assertion fails.

Examples

Example 1

import { AssertionError } from "https://deno.land/std@0.223.0/assert/assertion_error.ts";

throw new AssertionError("Assertion failed");

Constructors

new
AssertionError(message: string)

Constructs a new instance.