// file : odb/boost/date-time/exceptions.cxx // author : Boris Kolpackov // copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #include namespace odb { namespace boost { namespace date_time { const char* special_value:: what () const throw () { return "unrepresentable date/time special value"; } const char* value_out_of_range:: what () const throw () { return "date/time value out of range"; } } } }