Skip to main content
Module

x/tstl/exception/OverflowError.ts

TypeScript-STL (Standard Template Library, migrated from C++)
Go to Latest
File
//================================================================ /** * @packageDocumentation * @module std *///================================================================import { RuntimeError } from "./RuntimeError";
/** * Overflow Error. * * @author Jeongho Nam - https://github.com/samchon */export class OverflowError extends RuntimeError{ /** * Initializer Constructor. * * @param message The error messgae. */ public constructor(message: string) { super(message); }}