UNPKG

astl

Version:

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

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