28 int error()
const {
return m_error;}
35 char const*
what() const noexcept{
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);}
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