123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- #ifndef BOOST_URL_ERROR_HPP
- #define BOOST_URL_ERROR_HPP
- #include <boost/url/detail/config.hpp>
- #include <boost/url/error_types.hpp>
- #include <stdexcept>
- namespace boost {
- namespace urls {
- enum class error
- {
-
-
-
- success = 0,
-
- illegal_null,
-
- illegal_reserved_char,
-
- non_canonical,
-
-
- bad_pct_hexdig,
-
- incomplete_encoding,
-
- missing_pct_hexdig,
-
- no_space,
-
- not_a_base
- };
- }
- }
- #include <boost/url/impl/error.hpp>
- #endif
|