deno.land / std@0.201.0 / assert / assertion_error.ts
12345678// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.export class AssertionError extends Error { override name = "AssertionError"; constructor(message: string) { super(message); }}
Version Info