Estoy tratando de definir una clase de excepción realmente simple. Debido a que es tan simple, quiero mantenerlo solo en el archivo .h, pero al compilador no le gusta throw()
. El código:Método Inline throw() en C++
#include <exception>
#include <string>
class PricingException : public virtual std::exception
{
private:
std::string msg;
public:
PricingException(std::string message) : msg(message) {}
const char* what() const throw() { return msg.c_str(); }
~PricingException() throw() {}
};
GCC da los siguientes errores:
/home/ga/dev/CppGroup/MonteCarlo/PricingException.h:13: error: expected unqualified-id before ‘{’ token
/home/ga/dev/CppGroup/MonteCarlo/PricingException.h:14: error: expected unqualified-id before ‘{’ token
para líneas con throw()
. ¿Alguna de idea de cómo arreglarlo?
EDITAR
Me trataron de retirar los cuerpos de los métodos problemáticos, es decir
virtual ~PricingException() throw();// {}
Y ahora me sale el mensaje de error aún más raro:
/home/ga/dev/CppGroup/MonteCarlo/PricingException.h:14: error: looser throw specifier for ‘virtual PricingException::~PricingException()’
/usr/include/c++/4.5/exception:65: error: overriding ‘virtual std::exception::~exception() throw()’
Es simplemente ignorado mi especificador de tiro!
compila bien aquí con gcc versión 4.2.1 (Apple Inc. compilación 5664) – Thomas
Estoy ejecutando 'gcc (Debian 4.5.2-4) 4.5.2' – Grzenio
' #include '? '#include '? –