Skip to main content
Module

x/tstl/exception/OutOfRange.ts

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