12345678910111213141516171819202122232425262728293031323334353637383940414243 |
-
- #ifndef BOOST_ASSIGN_ASSIGNMENT_EXCEPTION_HPP
- #define BOOST_ASSIGN_ASSIGNMENT_EXCEPTION_HPP
- #if defined(_MSC_VER)
- # pragma once
- #endif
- #include <exception>
- namespace boost
- {
- namespace assign
- {
- class assignment_exception : public std::exception
- {
- public:
- assignment_exception( const char* _what )
- : what_( _what )
- { }
-
- virtual const char* what() const throw()
- {
- return what_;
- }
-
- private:
- const char* what_;
- };
- }
- }
- #endif
|