profuse/POSIX/Exception.cpp
2011-03-14 22:17:49 +00:00

13 lines
154 B
C++

#include "Exception.h"
#include <cstdio>
#include <cstring>
namespace POSIX {
const char *Exception::errorString()
{
return strerror(error());
}
}