mirror of
https://github.com/wfjm/w11.git
synced 2026-02-02 23:21:27 +00:00
- use `nullptr` instead of plain '0' - use `[[noreturn]]` (clang -Wmissing-noreturn) - drop never reached returns (clang -Wunreachable-code-return) - drop `throw()` lists, use `noexcept` (clang -Wdeprecated) - add `R*_Init` prototypes (clang -Wmissing-prototypes) - Rw11VirtEthTap.cpp: BUGFIX: buffer not null terminated (coverity)
64 lines
2.1 KiB
C++
64 lines
2.1 KiB
C++
// $Id: Rexception.hpp 1060 2018-10-27 11:32:39Z mueller $
|
|
//
|
|
// Copyright 2013-2018 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
|
//
|
|
// This program is free software; you may redistribute and/or modify it under
|
|
// the terms of the GNU General Public License as published by the Free
|
|
// Software Foundation, either version 3, or (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful, but
|
|
// WITHOUT ANY WARRANTY, without even the implied warranty of MERCHANTABILITY
|
|
// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
// for complete details.
|
|
//
|
|
// Revision History:
|
|
// Date Rev Version Comment
|
|
// 2018-10-27 1060 1.3 drop throw() list; use noexcept
|
|
// 2017-04-29 888 1.2 BUGFIX: add fErrtxt for proper what() return
|
|
// 2014-12-30 625 1.1 add ctor(meth,text,emsg)
|
|
// 2013-02-12 487 1.0.1 add ErrMsg() getter
|
|
// 2013-01-12 474 1.0 Initial version
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
/*!
|
|
\file
|
|
\brief Declaration of class Rexception.
|
|
*/
|
|
|
|
#ifndef included_Retro_Rexception
|
|
#define included_Retro_Rexception 1
|
|
|
|
#include <stdexcept>
|
|
#include <string>
|
|
|
|
#include "RerrMsg.hpp"
|
|
|
|
namespace Retro {
|
|
|
|
class Rexception : public std::exception {
|
|
public:
|
|
Rexception();
|
|
Rexception(const RerrMsg& errmsg);
|
|
Rexception(const std::string& meth,
|
|
const std::string& text);
|
|
Rexception(const std::string& meth,
|
|
const std::string& text, int errnum);
|
|
Rexception(const std::string& meth,
|
|
const std::string& text, const RerrMsg& errmsg);
|
|
~Rexception();
|
|
|
|
virtual const char* what() const noexcept;
|
|
const RerrMsg& ErrMsg() const;
|
|
|
|
protected:
|
|
RerrMsg fErrmsg; //!< message object
|
|
std::string fErrtxt; //!< message text (for what())
|
|
};
|
|
|
|
} // end namespace Retro
|
|
|
|
#include "Rexception.ipp"
|
|
|
|
#endif
|