UNPKG

alpha-version-dce-check-in-api

Version:

API for taking attendance and checking people in.

16 lines (13 loc) 267 B
/** * An error with a code * @author Gabe Abrams */ class ErrorWithCode extends Error { code: string; constructor(message: string, code: string) { super(message); this.name = 'ErrorWithCode'; this.code = code; } } export default ErrorWithCode;