summaryrefslogtreecommitdiff
path: root/src/parsetree.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/parsetree.cc')
-rw-r--r--src/parsetree.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/parsetree.cc b/src/parsetree.cc
index 2b9f9172..409b3ada 100644
--- a/src/parsetree.cc
+++ b/src/parsetree.cc
@@ -857,6 +857,10 @@ void NfaUnion::nfaTermCheck( ParseData *pd )
cout << "too-many-states" << endl;
exit( 1 );
}
+ catch ( const PriorInteraction & ) {
+ cout << "prior-interaction" << endl;
+ exit( 8 );
+ }
catch ( const RepetitionError & ) {
cout << "rep-error" << endl;
exit( 2 );