2019-01-21 14:03:30 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2018-10-07 19:33:30 -04:00
|
|
|
import { Base, ErrorKind } from "gen/msg_generated";
|
2018-09-09 19:28:56 -04:00
|
|
|
export { ErrorKind } from "gen/msg_generated";
|
2018-08-15 23:36:48 -04:00
|
|
|
|
2018-10-14 16:29:50 -04:00
|
|
|
/** A Deno specific error. The `kind` property is set to a specific error code
|
|
|
|
* which can be used to in application logic.
|
|
|
|
*
|
|
|
|
* import { DenoError, ErrorKind } from "deno";
|
|
|
|
* try {
|
|
|
|
* somethingThatMightThrow();
|
|
|
|
* } catch (e) {
|
2018-12-13 04:57:02 -05:00
|
|
|
* if (e instanceof DenoError && e.kind === ErrorKind.Overflow) {
|
2018-10-14 16:29:50 -04:00
|
|
|
* console.error("Overflow error!");
|
|
|
|
* }
|
|
|
|
* }
|
|
|
|
*/
|
2018-10-07 19:33:30 -04:00
|
|
|
export class DenoError<T extends ErrorKind> extends Error {
|
|
|
|
constructor(readonly kind: T, msg: string) {
|
|
|
|
super(msg);
|
|
|
|
this.name = ErrorKind[kind];
|
2018-08-15 23:36:48 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-04 15:23:38 -04:00
|
|
|
// @internal
|
2018-10-07 19:33:30 -04:00
|
|
|
export function maybeThrowError(base: Base): void {
|
2018-09-05 22:13:36 -04:00
|
|
|
const err = maybeError(base);
|
|
|
|
if (err != null) {
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-07 19:33:30 -04:00
|
|
|
// @internal
|
|
|
|
export function maybeError(base: Base): null | DenoError<ErrorKind> {
|
2018-08-15 23:36:48 -04:00
|
|
|
const kind = base.errorKind();
|
2018-10-07 19:33:30 -04:00
|
|
|
if (kind === ErrorKind.NoError) {
|
2018-09-05 22:13:36 -04:00
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return new DenoError(kind, base.error()!);
|
2018-08-15 23:36:48 -04:00
|
|
|
}
|
|
|
|
}
|