aboutsummaryrefslogtreecommitdiff
path: root/cutl/fs/exception.cxx
blob: 404947ffad6e3ba7dd56e054f8588e2aeb27e379 (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-2019 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";
    }
  }
}