mirror of
https://github.com/ksherlock/profuse.git
synced 2024-12-25 23:33:15 +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();
|
|
} |