123456789101112131415161718192021222324252627282930313233343536373839404142 |
- # ------------------------------------------------------------------------------
- # (C) Crown copyright Met Office. All rights reserved.
- # For further details please refer to the file COPYRIGHT.txt
- # which you should have received as part of this distribution.
- # ------------------------------------------------------------------------------
- use strict;
- use warnings;
- package Fcm::CLI::Exception;
- use base qw{Fcm::Exception};
- 1;
- __END__
- =head1 NAME
- Fcm::CLI::Exception
- =head1 SYNOPSIS
- use Carp qw{croak};
- use Fcm::CLI::Exception;
- croak(Fcm::CLI::Exception->new({message => 'something is wrong'}));
- =head1 DESCRIPTION
- This class extends L<Fcm::Exception|Fcm::Exception>. This exception is thrown
- on errors associated with the command line interface.
- =head1 METHODS
- See L<Fcm::Exception|Fcm::Exception> for a list of methods.
- =head1 SEE ALSO
- L<Fcm::Exception|Fcm::Exception>
- =head1 COPYRIGHT
- E<169> Crown copyright Met Office. All rights reserved.
- =cut
|