aboutsummaryrefslogtreecommitdiff
path: root/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/NoViableAltException.pm
blob: 88a78ad7b5495f67f833b9ffa5c2fde1718698fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package ANTLR::Runtime::NoViableAltException;

use Moose;

extends 'ANTLR::Runtime::RecognitionException';

has 'grammar_decision_description' => (
    is  => 'ro',
    isa => 'Str',
    required => 1,
);

has 'decision_number' => (
    is  => 'ro',
    isa => 'Int',
    required => 1,
);

has 'state_number' => (
    is  => 'ro',
    isa => 'Int',
    required => 1,
);

no Moose;
__PACKAGE__->meta->make_immutable();
1;