error.hpp 579 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // Copyright 2007-2008 Christian Henning, Andreas Pokorny, Lubomir Bourdev
  3. //
  4. // Distributed under the Boost Software License, Version 1.0
  5. // See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt
  7. //
  8. #ifndef BOOST_GIL_IO_ERROR_HPP
  9. #define BOOST_GIL_IO_ERROR_HPP
  10. #include <ios>
  11. namespace boost { namespace gil {
  12. inline void io_error(const char* descr)
  13. {
  14. throw std::ios_base::failure(descr);
  15. }
  16. inline void io_error_if(bool expr, const char* descr)
  17. {
  18. if (expr)
  19. io_error(descr);
  20. }
  21. } // namespace gil
  22. } // namespace boost
  23. #endif