UNPKG

alepha

Version:

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

10 lines (7 loc) 228 B
import { AlephaError } from "./AlephaError.ts"; export class AppNotStartedError extends AlephaError { readonly name = "AppNotStartedError"; constructor() { super("App not started. Please start the app before."); } }