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_r5107_dynvor_updates/NEMOGCM/EXTERNAL/fcm/lib/Fcm/Keyword – NEMO

source: branches/UKMO/DEV_r5107_dynvor_updates/NEMOGCM/EXTERNAL/fcm/lib/Fcm/Keyword/Exception.pm @ 5256

Last change on this file since 5256 was 5256, checked in by mikebell, 9 years ago

Clean up key words

File size: 993 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::Keyword::Exception;
10use base qw{Fcm::Exception};
11
121;
13__END__
14
15=head1 NAME
16
17Fcm::Keyword::Exception
18
19=head1 SYNOPSIS
20
21    use Carp qw{croak};
22    use Fcm::Keyword::Exception;
23    croak(Fcm::Keyword::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.