os/ossrv/ossrv_pub/boost_apis/boost/ptr_container/exception.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
//
sl@0
     2
// Boost.Pointer Container
sl@0
     3
//
sl@0
     4
//  Copyright Thorsten Ottosen 2003-2005. Use, modification and
sl@0
     5
//  distribution is subject to the Boost Software License, Version
sl@0
     6
//  1.0. (See accompanying file LICENSE_1_0.txt or copy at
sl@0
     7
//  http://www.boost.org/LICENSE_1_0.txt)
sl@0
     8
//
sl@0
     9
// For more information, see http://www.boost.org/libs/ptr_container/
sl@0
    10
//
sl@0
    11
sl@0
    12
#ifndef BOOST_PTR_CONTAINER_EXCEPTION_HPP
sl@0
    13
#define BOOST_PTR_CONTAINER_EXCEPTION_HPP
sl@0
    14
sl@0
    15
#if defined(_MSC_VER) && (_MSC_VER >= 1200)
sl@0
    16
# pragma once
sl@0
    17
#endif
sl@0
    18
sl@0
    19
#include <exception>
sl@0
    20
sl@0
    21
namespace boost
sl@0
    22
{
sl@0
    23
    class bad_ptr_container_operation : public std::exception
sl@0
    24
    {
sl@0
    25
        const char* what_;
sl@0
    26
    public:
sl@0
    27
        bad_ptr_container_operation( const char* what ) : what_( what )
sl@0
    28
        { }
sl@0
    29
        
sl@0
    30
        virtual const char* what() const throw()
sl@0
    31
        {
sl@0
    32
            return what_;
sl@0
    33
        }
sl@0
    34
    };
sl@0
    35
sl@0
    36
sl@0
    37
    
sl@0
    38
    class bad_index : public bad_ptr_container_operation
sl@0
    39
    {
sl@0
    40
    public:
sl@0
    41
        bad_index( const char* what ) : bad_ptr_container_operation( what )
sl@0
    42
        { }
sl@0
    43
    };
sl@0
    44
sl@0
    45
sl@0
    46
sl@0
    47
    class bad_pointer : public bad_ptr_container_operation
sl@0
    48
    {
sl@0
    49
    public:
sl@0
    50
        bad_pointer() : bad_ptr_container_operation( "Null pointer not allowed in a pointer container!" )
sl@0
    51
        { }
sl@0
    52
        
sl@0
    53
        bad_pointer( const char* text ) : bad_ptr_container_operation( text )
sl@0
    54
        { }
sl@0
    55
    };
sl@0
    56
}
sl@0
    57
sl@0
    58
#endif