UNPKG

astl

Version:

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

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