aboutsummaryrefslogtreecommitdiff
path: root/cutl/fs/exception.cxx
blob: c3f8da2d683686bd4f165ccd6025b699ba9fd9ad (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 LIBCUTL_NOTHROW_NOEXCEPT
    {
      return "filesystem error";
    }
  }
}