fix const correctness
This commit is contained in:
parent
269539741c
commit
2f9d1b7a1f
1 changed files with 2 additions and 2 deletions
|
|
@ -59,14 +59,14 @@ public:
|
||||||
Use the E_INFOS macro to raise the exception, for example :
|
Use the E_INFOS macro to raise the exception, for example :
|
||||||
throw( Exception( "Shit evolves", E_INFOS );
|
throw( Exception( "Shit evolves", E_INFOS );
|
||||||
*/
|
*/
|
||||||
Exception( const std::string & desc, const std::string & func, const std::string & f, const int l )
|
Exception( const std::string & desc, const std::string & func, const std::string & f, const int l )
|
||||||
: description(desc), function(func), file(f), line(l) {}
|
: description(desc), function(func), file(f), line(l) {}
|
||||||
|
|
||||||
//! The destructor is not allowed to throw exceptions
|
//! The destructor is not allowed to throw exceptions
|
||||||
virtual ~Exception() throw () {}
|
virtual ~Exception() throw () {}
|
||||||
|
|
||||||
//! The method to use for printing the complete description of the exception
|
//! The method to use for printing the complete description of the exception
|
||||||
std::string what()
|
std::string what() const
|
||||||
{
|
{
|
||||||
std::ostringstream msg;
|
std::ostringstream msg;
|
||||||
msg << description << " (<" << name << "> in " << function << " at " << file << ":" << line << ")";
|
msg << description << " (<" << name << "> in " << function << " at " << file << ":" << line << ")";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue