errinfo_api_function.hpp 647 B

12345678910111213141516171819202122
  1. //Copyright (c) 2006-2009 Emil Dotchevski and Reverge Studios, Inc.
  2. //Distributed under the Boost Software License, Version 1.0. (See accompanying
  3. //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #ifndef UUID_DDFBB4546C1211DEA4659E9055D89593
  5. #define UUID_DDFBB4546C1211DEA4659E9055D89593
  6. #include <boost/exception/error_info.hpp>
  7. namespace
  8. boost
  9. {
  10. //Usage hint:
  11. //if( api_function(....)!=0 )
  12. // BOOST_THROW_EXCEPTION(
  13. // failure() <<
  14. // errinfo_api_function("api_function") );
  15. typedef error_info<struct errinfo_api_function_,char const *> errinfo_api_function;
  16. }
  17. #endif