aboutsummaryrefslogtreecommitdiff
path: root/libcutl/fs/exception.cxx
blob: 49fb9fe1031c45ddef9e28337d271479794514f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// file      : libcutl/fs/exception.cxx
// license   : MIT; see accompanying LICENSE file

#include <libcutl/fs/exception.hxx>

namespace cutl
{
  namespace fs
  {
    char const* error::
    what () const noexcept
    {
      return "filesystem error";
    }
  }
}