mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-17 18:12:04 +01:00
Corrected exception specifier on DOMBadCast destructor
This commit is contained in:
parent
f7146a5668
commit
bec9948659
1 changed files with 8 additions and 0 deletions
|
@ -27,6 +27,10 @@ public:
|
||||||
{
|
{
|
||||||
} // DOMBadCase
|
} // DOMBadCase
|
||||||
|
|
||||||
|
virtual ~DOMBadCast() throw()
|
||||||
|
{
|
||||||
|
} // DOMBadCast
|
||||||
|
|
||||||
virtual const char* what() const throw()
|
virtual const char* what() const throw()
|
||||||
{
|
{
|
||||||
return message_.c_str();
|
return message_.c_str();
|
||||||
|
@ -73,6 +77,10 @@ public:
|
||||||
{
|
{
|
||||||
} // DOMException
|
} // DOMException
|
||||||
|
|
||||||
|
virtual ~DOMException() throw()
|
||||||
|
{
|
||||||
|
} // DOMBadCast
|
||||||
|
|
||||||
CODE code() const { return code_; }
|
CODE code() const { return code_; }
|
||||||
|
|
||||||
virtual const char* what() const throw()
|
virtual const char* what() const throw()
|
||||||
|
|
Loading…
Reference in a new issue