ho una classe C++ e sto cercando di farlo funzionare in Ubuntu:Creazione di nuova eccezione in C++
#ifndef WRONGPARAMETEREXCEPTION_H_
#define WRONGPARAMETEREXCEPTION_H_
#include <iostream>
#include <exception>
#include <string>
using namespace std;
#pragma once
class WrongParameterException: public exception
{
public:
WrongParameterException(char* message): exception(message) {};
virtual ~WrongParameterException() throw() {};
};
#endif
quando provo a compilarlo, il compilatore mi dà questo errore:
WrongParameterException.h: In constructor ‘WrongParameterException::WrongParameterException(char*)’:
WrongParameterException.h:14: error: no matching function for call to ‘std::exception::exception(char*&)’
/usr/include/c++/4.3/exception:59: note: candidates are: std::exception::exception()
/usr/include/c++/4.3/exception:57: note: std::exception::exception(const std::exception&)
Qualcuno può dirmi cosa sto sbagliando? Ho provato a cambiare la variabile del messaggio in string
o const string
o const string&
ma non è stato di aiuto.
Ecco come io uso la nuova eccezione che ho creato dal principale:
try
{
if ((strToInt1 == -1) || (parameters[1] == NULL) || (strToInt3 == -1) || (parameters[3] != NULL))
{
throw WrongParameterException("Error in the config or commands file");
}
}
catch(WrongParameterException e)
{
log.addMsg(e.what());
}
Non correlato alla domanda, ma importante: non utilizzare 'namespace std;' in un'intestazione. In secondo luogo, scopri le classi di eccezioni standard fornite da C++ (std :: runtime_error, logic_error e domain_error ecc.). Catch di const &. E non includere per un'intestazione di eccezione. –
gimpf