Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/internal/error_data/imandrax_errors.ml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ let all : t list =
make "LowerFolError" "Error in lowering RIR to FOL";
make "ValidationError" "Error while validating a definition";
make "LspError" "Error in LSP server";
make "Interrupted" "Computation was interrupted";
make "Interrupted" "Computation was interrupted (usually for exceeding the time limit)";
make "RedisError" "Redis error";
make "CIRDeclNotFoundInStorage" "CIR storage error";
make "SerializationError" "Error during serialization";
Expand All @@ -77,6 +77,7 @@ let all : t list =
make "Debounced" "Task has been cancelled due to debouncing";
make "FileNotFound" "A file could not be found";
make "InvalidSession" "The session ID provided is invalid";
make "NoCounterExample" "Test did not find a counter-example"
]
make "NoCounterExample" "Test did not find a counter-example";
make "OutOfMemory" "The memory limit has been exceeded";
make "Infrastructure" "A part of the infrastructure failed" ]
[@ocamlformat "disable"]
Loading