Skip to content

Commit

Permalink
doc: the error message
Browse files Browse the repository at this point in the history
  • Loading branch information
EagleoutIce committed Sep 1, 2023
1 parent 275ee2b commit 1e39329
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/cli/repl/server/messages/error.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
import { FlowrBaseMessage } from './messages'

/**
* Sent in case of any error (e.g., if the analysis fails, or the message contains syntax errors).
*/
export interface FlowrErrorMessage extends FlowrBaseMessage {
type: 'error',
/** if fatal, the connection will be partially closed afterward */
fatal: boolean,
/** the human-readable reason for the error */
reason: string
}

0 comments on commit 1e39329

Please sign in to comment.