summaryrefslogtreecommitdiff
path: root/lib/Getopt/Dakkar/X.pm
blob: f705ed580b2201a60596bed295307248f2c96218 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package Getopt::Dakkar::X; 
use Getopt::Dakkar::Style;
# VERSION 
# ABSTRACT: exceptions 
 
package Getopt::Dakkar::X::ExtraArgs {
    use Getopt::Dakkar::Style qw(class);
    with 'Throwable';
    has args => ( is => 'ro'isa => ArrayRef, required => 1 );
};
 
package Getopt::Dakkar::X::BadOption {
    use Getopt::Dakkar::Style qw(class);
    with 'Throwable';
    has input => ( is => 'ro'isa => Str, required => 1 );
};