UNPKG

alepha

Version:

Easy-to-use modern TypeScript framework for building many kind of applications.

11 lines (8 loc) 280 B
import { AlephaError } from "./AlephaError.ts"; export class MissingContextError extends AlephaError { readonly name = "MissingContextError"; constructor() { super("Missing context. Did you forget to call Alepha.create()?"); this.name = "MissingContextError"; } }