mirror of
https://github.com/ksherlock/profuse.git
synced 2026-09-23 23:25:04 +00:00
13 lines
154 B
C++
13 lines
154 B
C++
|
|
|
||
|
|
#include "Exception.h"
|
||
|
|
#include <cstdio>
|
||
|
|
#include <cstring>
|
||
|
|
|
||
|
|
namespace POSIX {
|
||
|
|
|
||
|
|
const char *Exception::errorString()
|
||
|
|
{
|
||
|
|
return strerror(error());
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|