2018-09-09 19:21:22 -04:00
|
|
|
import * as fbs 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-09-04 15:23:38 -04:00
|
|
|
// @internal
|
2018-08-15 23:36:48 -04:00
|
|
|
export class DenoError<T extends fbs.ErrorKind> extends Error {
|
|
|
|
constructor(readonly kind: T, msg: string) {
|
|
|
|
super(msg);
|
2018-09-09 19:28:56 -04:00
|
|
|
this.name = fbs.ErrorKind[kind];
|
2018-08-15 23:36:48 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-04 15:23:38 -04:00
|
|
|
// @internal
|
2018-08-15 23:36:48 -04:00
|
|
|
export function maybeThrowError(base: fbs.Base): void {
|
2018-09-05 22:13:36 -04:00
|
|
|
const err = maybeError(base);
|
|
|
|
if (err != null) {
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function maybeError(base: fbs.Base): null | DenoError<fbs.ErrorKind> {
|
2018-08-15 23:36:48 -04:00
|
|
|
const kind = base.errorKind();
|
2018-09-05 22:13:36 -04:00
|
|
|
if (kind === fbs.ErrorKind.NoError) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
return new DenoError(kind, base.error()!);
|
2018-08-15 23:36:48 -04:00
|
|
|
}
|
|
|
|
}
|