Home | History | Annotate | Download | only in Runtime
      1 package ANTLR::Runtime::NoViableAltException;
      2 
      3 use Moose;
      4 
      5 extends 'ANTLR::Runtime::RecognitionException';
      6 
      7 has 'grammar_decision_description' => (
      8     is  => 'ro',
      9     isa => 'Str',
     10     required => 1,
     11 );
     12 
     13 has 'decision_number' => (
     14     is  => 'ro',
     15     isa => 'Int',
     16     required => 1,
     17 );
     18 
     19 has 'state_number' => (
     20     is  => 'ro',
     21     isa => 'Int',
     22     required => 1,
     23 );
     24 
     25 no Moose;
     26 __PACKAGE__->meta->make_immutable();
     27 1;
     28