Added nothrow exception specification to NullPointerException::what()

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@37 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
magmaikh 2002-08-15 02:43:10 +00:00
parent f5a13bbce0
commit 8252c903a2

View file

@ -567,7 +567,7 @@ namespace Loki
{
NullPointerException() : std::runtime_error("")
{ }
const char* what() const
const char* what() const throw()
{ return "Null Pointer Exception"; }
};