UNPKG

alepha

Version:

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

10 lines (8 loc) 209 B
import { AlephaError } from "alepha"; export class SmsError extends AlephaError { constructor(message: string, cause?: Error) { super(message); this.name = "SmsError"; this.cause = cause; } }