aboutsummaryrefslogtreecommitdiff
path: root/cutl/fs/path.cxx
blob: 6e295c6dd87541a25d214546dffdf0b90e730ad6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// file      : cutl/fs/path.cxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

#include <cutl/fs/path.hxx>

namespace cutl
{
  namespace fs
  {
    char const* invalid_path::
    what () const throw ()
    {
      return "invalid filesystem path";
    }
  }
}