mirror of
https://github.com/vgough/encfs.git
synced 2024-11-28 19:03:42 +01:00
7799c88df6
git-svn-id: http://encfs.googlecode.com/svn/trunk@93 db9cf616-1c43-0410-9cb8-a902689de0d6
11 lines
126 B
C++
11 lines
126 B
C++
#include "base/Error.h"
|
|
|
|
namespace encfs {
|
|
|
|
Error::Error(const char *msg)
|
|
: runtime_error(msg)
|
|
{
|
|
}
|
|
|
|
} // namespace encfs
|