Update contrib.
3 * Copyright (c) 1998-2002
6 * Use, modification and distribution are subject to the
7 * Boost Software License, Version 1.0. (See accompanying file
8 * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
13 * LOCATION: see http://www.boost.org for most recent version.
14 * FILE pattern_except.hpp
15 * VERSION see <boost/version.hpp>
16 * DESCRIPTION: Declares pattern-matching exception classes.
19 #ifndef BOOST_RE_PAT_EXCEPT_HPP
20 #define BOOST_RE_PAT_EXCEPT_HPP
22 #ifndef BOOST_REGEX_CONFIG_HPP
23 #include <boost/regex/config.hpp>
28 #include <boost/regex/v4/error_type.hpp>
32 #ifdef BOOST_HAS_ABI_HEADERS
33 # include BOOST_ABI_PREFIX
38 #pragma warning(disable : 4275)
40 class BOOST_REGEX_DECL regex_error : public std::runtime_error
43 explicit regex_error(const std::string& s, regex_constants::error_type err = regex_constants::error_unknown, std::ptrdiff_t pos = 0);
44 explicit regex_error(regex_constants::error_type err);
45 ~regex_error() throw();
46 regex_constants::error_type code()const
47 { return m_error_code; }
48 std::ptrdiff_t position()const
49 { return m_position; }
52 regex_constants::error_type m_error_code;
53 std::ptrdiff_t m_position;
56 typedef regex_error bad_pattern;
57 typedef regex_error bad_expression;
61 BOOST_REGEX_DECL void BOOST_REGEX_CALL raise_runtime_error(const std::runtime_error& ex);
63 template <class traits>
64 void raise_error(const traits& t, regex_constants::error_type code)
66 (void)t; // warning suppression
67 std::runtime_error e(t.error_string(code));
68 ::boost::re_detail::raise_runtime_error(e);
74 #ifdef BOOST_HAS_ABI_HEADERS
75 # include BOOST_ABI_SUFFIX