aboutsummaryrefslogtreecommitdiffstats
path: root/src/repl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/repl.cpp')
-rw-r--r--src/repl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/repl.cpp b/src/repl.cpp
index d3ad22e..e6de528 100644
--- a/src/repl.cpp
+++ b/src/repl.cpp
@@ -42,7 +42,7 @@ readExpand(PEnv& penv, Cursor& cursor, istream& is, const AST*& exp)
{
try {
exp = penv.parse(cursor, is);
- } catch (Error e) {
+ } catch (RespError e) {
cerr << e.what() << endl;
is.ignore(std::numeric_limits<std::streamsize>::max(), '\n'); // Skip REPL junk
throw e;
@@ -224,7 +224,7 @@ eval(CEnv& cenv, Cursor& cursor, istream& is, bool execute)
callPrintCollect(cenv, cenv.engine()->getFn(cenv, "main"),
ast, retT, execute);
- } catch (Error& e) {
+ } catch (RespError& e) {
cenv.err << e.what() << endl;
return 1;
}
@@ -288,7 +288,7 @@ repl(CEnv& cenv)
ast, retT, true);
}
- } catch (Error& e) {
+ } catch (RespError& e) {
cenv.err << e.what() << endl;
}
}