Extension: Json and NetCDF utilities
#include "dg/file/file.h"
Loading...
Searching...
No Matches
nc_error.h
Go to the documentation of this file.
1#pragma once
2
3#include <exception>
4#include <netcdf.h>
5
10namespace dg
11{
12namespace file
13{
14
19struct NC_Error : public std::exception
20{
26 NC_Error( int error): m_error( error) {}
27
28 int error() const { return m_error;}
29 int& error() { return m_error;}
35 char const* what() const noexcept{
36 if ( m_error == 1000)
37 return "NC ERROR Cannot operate on closed file!\n";
38 else if( m_error == 1001)
39 return "NC ERROR Slab dimension does not match variable dimension!\n";
40 else if( m_error == 1002)
41 return "NC ERROR Cannot open file. File already open!\n";
42 return nc_strerror(m_error);}
43 private:
44 int m_error;
45};
46
70{
80 {
82 return h(err);
83 }
93 {
94 if( err)
95 throw NC_Error( err);
96 return *this;
97 }
98};
99
100}//namespace file
101}//namespace dg
error
Switch between how to handle errors in a Json utitlity functions.
Definition json_wrapper.h:42
Definition easy_atts.h:15
DEPRECATED Empty utitlity class that handles return values of netcdf functions and throws NC_Error(st...
Definition nc_error.h:70
NC_Error_Handle operator=(int err)
Construct from error code.
Definition nc_error.h:79
NC_Error_Handle operator()(int err)
Construct from error code.
Definition nc_error.h:92
Class thrown by the NC_Error_Handle.
Definition nc_error.h:20
char const * what() const noexcept
What string.
Definition nc_error.h:35
NC_Error(int error)
Construct from error code.
Definition nc_error.h:26
int error() const
Definition nc_error.h:28
int & error()
Definition nc_error.h:29