aboutsummaryrefslogtreecommitdiff
path: root/cutl/fs/exception.cxx
blob: d52510019593e7145e623768f390222a1cec0a3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// file      : cutl/fs/exception.cxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 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";
    }
  }
}