mirror of
https://github.com/ksherlock/profuse.git
synced 2025-01-03 07:29:31 +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();
|
||||
}
|
||||
|
@ -14,7 +14,7 @@ public:
|
||||
|
||||
virtual ~Exception() throw ();
|
||||
|
||||
virtual const char *what();
|
||||
virtual const char *what() const throw();
|
||||
virtual const char *errorString();
|
||||
|
||||
int error() const { return _error; }
|
||||
|
Loading…
Reference in New Issue
Block a user