std/assert/assertion_error.ts

21 lines
517 B
TypeScript

// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// This module is browser compatible.
/**
* Error thrown when an assertion fails.
*
* @example
* ```ts
* import { AssertionError } from "https://deno.land/std@$STD_VERSION/assert/assertion_error.ts";
*
* throw new AssertionError("Assertion failed");
* ```
*/
export class AssertionError extends Error {
/** Constructs a new instance. */
constructor(message: string) {
super(message);
this.name = "AssertionError";
}
}