profuse/POSIX/Exception.cpp

13 lines
154 B
C++

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