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

source: branches/UKMO/dev_r5785_SSS_obsoper/NEMOGCM/EXTERNAL/fcm/lib/Fcm/Keyword/Exception.pm @ 7773

Last change on this file since 7773 was 7773, checked in by mattmartin, 7 years ago

Committing updates after doing the following:

  • merging the branch dev_r4650_general_vert_coord_obsoper@7763 into this branch
  • updating it so that the following OBS changes were implemented correctly on top of the simplification changes:
    • generalised vertical coordinate for profile obs. This was done so that is now the default option.
    • sst bias correction implemented with the new simplified obs code.
    • included the biogeochemical obs types int he new simplified obs code.
    • included the changes to exclude obs in the boundary for limited area models
    • included other changes for the efficiency of the obs operator to remove global arrays.
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.