mirror of
https://github.com/ksherlock/profuse.git
synced 2025-02-01 13:32:55 +00:00
exception::what() const throw()
git-svn-id: https://profuse.googlecode.com/svn/branches/v2@403 aa027e90-d47c-11dd-86d7-074df07e0730
This commit is contained in:
parent
818ab5f602
commit
25ad5cf7f5
@ -33,7 +33,7 @@ Exception::~Exception() throw()
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *Exception::what()
|
const char *Exception::what() const throw()
|
||||||
{
|
{
|
||||||
return _string.c_str();
|
return _string.c_str();
|
||||||
}
|
}
|
||||||
|
@ -14,7 +14,7 @@ public:
|
|||||||
|
|
||||||
virtual ~Exception() throw ();
|
virtual ~Exception() throw ();
|
||||||
|
|
||||||
virtual const char *what();
|
virtual const char *what() const throw();
|
||||||
virtual const char *errorString();
|
virtual const char *errorString();
|
||||||
|
|
||||||
int error() const { return _error; }
|
int error() const { return _error; }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user