blob: 3fbd26ba0d53444b275cdf2aaa8233815c743234 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// file : cutl/fs/exception.cxx
// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <cutl/fs/exception.hxx>
namespace cutl
{
namespace fs
{
char const* error::
what () const throw ()
{
return "filesystem error";
}
}
}
|