summaryrefslogtreecommitdiff
path: root/cli/msg.fbs
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2019-06-20 12:07:01 +1000
committerRyan Dahl <ry@tinyclouds.org>2019-06-19 19:07:01 -0700
commit425df50484f315dcd63b4d93ab6911702779899e (patch)
tree61d95f3773f254e1ed17d915ad927d40a1caeeea /cli/msg.fbs
parent43f48386d7921612c5cbe7d39a4dfb82a3f3367e (diff)
Combine CLI Errors (#2487)
Diffstat (limited to 'cli/msg.fbs')
-rw-r--r--cli/msg.fbs6
1 files changed, 5 insertions, 1 deletions
diff --git a/cli/msg.fbs b/cli/msg.fbs
index 7e8292740..d76e70d85 100644
--- a/cli/msg.fbs
+++ b/cli/msg.fbs
@@ -133,12 +133,16 @@ enum ErrorKind: byte {
// custom errors
InvalidUri,
InvalidSeekMode,
- OpNotAvaiable,
+ OpNotAvailable,
WorkerInitFailed,
UnixError,
NoAsyncSupport,
NoSyncSupport,
ImportMapError,
+
+ // other kinds
+ Diagnostic,
+ JSError,
}
table Cwd {}