sl@0: // sl@0: // Boost.Pointer Container sl@0: // sl@0: // Copyright Thorsten Ottosen 2003-2005. Use, modification and sl@0: // distribution is subject to the Boost Software License, Version sl@0: // 1.0. (See accompanying file LICENSE_1_0.txt or copy at sl@0: // http://www.boost.org/LICENSE_1_0.txt) sl@0: // sl@0: // For more information, see http://www.boost.org/libs/ptr_container/ sl@0: // sl@0: sl@0: #ifndef BOOST_PTR_CONTAINER_EXCEPTION_HPP sl@0: #define BOOST_PTR_CONTAINER_EXCEPTION_HPP sl@0: sl@0: #if defined(_MSC_VER) && (_MSC_VER >= 1200) sl@0: # pragma once sl@0: #endif sl@0: sl@0: #include sl@0: sl@0: namespace boost sl@0: { sl@0: class bad_ptr_container_operation : public std::exception sl@0: { sl@0: const char* what_; sl@0: public: sl@0: bad_ptr_container_operation( const char* what ) : what_( what ) sl@0: { } sl@0: sl@0: virtual const char* what() const throw() sl@0: { sl@0: return what_; sl@0: } sl@0: }; sl@0: sl@0: sl@0: sl@0: class bad_index : public bad_ptr_container_operation sl@0: { sl@0: public: sl@0: bad_index( const char* what ) : bad_ptr_container_operation( what ) sl@0: { } sl@0: }; sl@0: sl@0: sl@0: sl@0: class bad_pointer : public bad_ptr_container_operation sl@0: { sl@0: public: sl@0: bad_pointer() : bad_ptr_container_operation( "Null pointer not allowed in a pointer container!" ) sl@0: { } sl@0: sl@0: bad_pointer( const char* text ) : bad_ptr_container_operation( text ) sl@0: { } sl@0: }; sl@0: } sl@0: sl@0: #endif