UNPKG

astl

Version:

AssemblyScript-STL (Standard Template Library, migrated from the C++)

9 lines (8 loc) 174 B
import { LogicError } from "./LogicError"; export class OutOfRange extends LogicError { public constructor(message: string) { super(message); } }