New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Exception.pm in branches/UKMO/dev_r10171_test_crs_AMM7/NEMOGCM/EXTERNAL/fcm/lib/Fcm/CLI – NEMO

source: branches/UKMO/dev_r10171_test_crs_AMM7/NEMOGCM/EXTERNAL/fcm/lib/Fcm/CLI/Exception.pm @ 10207

Last change on this file since 10207 was 10207, checked in by cmao, 5 years ago

remove svn keyword

File size: 977 bytes
Line 
1# ------------------------------------------------------------------------------
2# (C) Crown copyright Met Office. All rights reserved.
3# For further details please refer to the file COPYRIGHT.txt
4# which you should have received as part of this distribution.
5# ------------------------------------------------------------------------------
6use strict;
7use warnings;
8
9package Fcm::CLI::Exception;
10use base qw{Fcm::Exception};
11
121;
13__END__
14
15=head1 NAME
16
17Fcm::CLI::Exception
18
19=head1 SYNOPSIS
20
21    use Carp qw{croak};
22    use Fcm::CLI::Exception;
23    croak(Fcm::CLI::Exception->new({message => 'something is wrong'}));
24
25=head1 DESCRIPTION
26
27This class extends L<Fcm::Exception|Fcm::Exception>. This exception is thrown
28on errors associated with the command line interface.
29
30=head1 METHODS
31
32See L<Fcm::Exception|Fcm::Exception> for a list of methods.
33
34=head1 SEE ALSO
35
36L<Fcm::Exception|Fcm::Exception>
37
38=head1 COPYRIGHT
39
40E<169> Crown copyright Met Office. All rights reserved.
41
42=cut
Note: See TracBrowser for help on using the repository browser.