mirror of
https://github.com/ksherlock/profuse.git
synced 2025-01-12 20:29:44 +00:00
13 lines
149 B
C++
13 lines
149 B
C++
|
|
||
|
#include "Exception.h"
|
||
|
|
||
|
using namespace ProFUSE;
|
||
|
|
||
|
Exception::~Exception() throw()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
const char *Exception::what()
|
||
|
{
|
||
|
return _string.c_str();
|
||
|
}
|