27#ifndef __mxException__
28#define __mxException__
90 const std::string &emnem,
91 const std::string &efile,
93 const std::string &expl
104 const std::string &emnem,
106 const std::string &efile,
108 const std::string &expl
142 std::ostringstream s;
151 s <<
"\n code: " <<
m_code;
160 s <<
"\n in file: " <<
m_file;
162 s <<
"\n at line: " <<
m_line;
166 s <<
"\n " << strerror(
m_errno );
172 virtual const char *
what() const noexcept
186 const std::string &efile,
188 const std::string &expl
190 :
mxException( esrc, MXE_INVALIDARG, MXE_INVALIDARG_NAME, efile, line, expl )
203 const std::string &esrc,
204 const std::string &efile,
206 const std::string &expl
208 :
mxException( esrc, MXE_INVALIDCONFIG, MXE_INVALIDCONFIG_NAME, efile, line, expl )
221 const std::string &efile,
223 const std::string &expl
225 :
mxException( esrc, MXE_NOTIMPL, MXE_NOTIMPL_NAME, efile, line, expl )
238 const std::string &efile,
240 const std::string &expl
242 :
mxException( esrc, MXE_PARAMNOTSET, MXE_PARAMNOTSET_NAME, efile, line, expl )
255 const std::string &efile,
257 const std::string &expl
259 :
mxException( esrc, MXE_SIZEERR, MXE_SIZEERR_NAME, efile, line, expl )
272 const std::string &efile,
274 const std::string &expl
276 :
mxException( esrc, MXE_ALLOCERR, MXE_ALLOCERR_NAME, efile, line, expl )
289 const std::string &efile,
291 const std::string &expl
293 :
mxException( esrc, MXE_FILEOERR, MXE_FILEOERR_NAME, efile, line, expl )
298 const std::string &efile,
300 const std::string &expl
302 :
mxException( esrc, MXE_FILEOERR, MXE_FILEOERR_NAME, en, efile, line, expl )
315 const std::string &efile,
317 const std::string &expl
319 :
mxException( esrc, MXE_FILERERR, MXE_FILERERR_NAME, efile, line, expl )
324 const std::string &efile,
326 const std::string &expl
328 :
mxException( esrc, MXE_FILERERR, MXE_FILERERR_NAME, en, efile, line, expl )
341 const std::string &efile,
343 const std::string &expl
345 :
mxException( esrc, MXE_FILEWERR, MXE_FILEWERR_NAME, efile, line, expl )
350 const std::string &efile,
352 const std::string &expl
354 :
mxException( esrc, MXE_FILEWERR, MXE_FILEWERR_NAME, en, efile, line, expl )
367 const std::string &efile,
369 const std::string &expl
371 :
mxException( esrc, MXE_FILECERR, MXE_FILECERR_NAME, efile, line, expl )
376 const std::string &efile,
378 const std::string &expl
380 :
mxException( esrc, MXE_FILECERR, MXE_FILECERR_NAME, en, efile, line, expl )
393 const std::string &efile,
395 const std::string &expl
397 :
mxException( esrc, MXE_LIBERR, MXE_LIBERR_NAME, efile, line, expl )
405#define mxThrowException( extype, src, expl ) throw extype( src, __FILE__, __LINE__, expl );
407#define mxThrowExceptionErrno( extype, en, src, expl ) throw extype( src, en, __FILE__, __LINE__, expl );
mxException for an allocation error
allocerr(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
mxException for errors closing a file
filecerr(const std::string &esrc, const int &en, const std::string &efile, const int &line, const std::string &expl)
filecerr(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
mxException for errors on opening a file
fileoerr(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
fileoerr(const std::string &esrc, const int &en, const std::string &efile, const int &line, const std::string &expl)
mxException for errors reading from a file
filererr(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
filererr(const std::string &esrc, const int &en, const std::string &efile, const int &line, const std::string &expl)
mxException for errors writing to a file
filewerr(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
filewerr(const std::string &esrc, const int &en, const std::string &efile, const int &line, const std::string &expl)
mxException for invalid arguments
invalidarg(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
mxException for invalid config settings
invalidconfig(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
mxException for errors returned by a library call
liberr(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
The mxlib exception class.
std::string m_file
The source file where the exception originated.
std::string m_source
The source of the exception, such as stdlib or cfitisio or the function name.
mxException(const std::string &esrc, const int &ec, const std::string &emnem, const int &en, const std::string &efile, const int &line, const std::string &expl)
Construct and fill in each of the values, including errno.
mxException(const mxException &e) noexcept
Copy constructor.
mxException & operator=(const mxException &e) noexcept
Assignment operator.
int m_line
The line number of the file where the exception originated.
std::string m_codeName
The name of the error code.
char m_whatstr[4096]
Contains the what() string.
mxException(const std::string &esrc, const int &ec, const std::string &emnem, const std::string &efile, const int &line, const std::string &expl)
Construct and fill in each of the values, except errno.
virtual ~mxException()
Destructor.
int m_errno
The errno error code (only used if non-zero)
std::string m_explanation
The long explanation of the error.
int m_code
The mxlib error code.
virtual const char * what() const noexcept
Return the details of the exception as a single string.
virtual void build_what()
Build the what string.
mxException() noexcept
Default constructor.
mxException for not implemented features
notimpl(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
mxException for parameters which aren't set
paramnotset(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
mxException for a size error
sizeerr(const std::string &esrc, const std::string &efile, const int &line, const std::string &expl)
std::string errno_CodeToName(int ec)
Return the macro name and a message for a standard errno code.
Declares and defines the mxlib error reporting system.