aboutsummaryrefslogtreecommitdiff
path: root/cutl/fs/exception.cxx
blob: 4e95ab0acfc467ee88c0996a8dce26f2b60de544 (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-2017 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

#include <cutl/fs/exception.hxx>

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