The exception every rejected pattern throws: a message with the pattern offset it was found at, plus an error_kind a caller can branch on without parsing what. In a constexpr context (static_regex) reaching the throw is a compile-time error, the message appearing in the diagnostic trace.
More...
#include <program.hpp>
|
| | regex_error (const std::string &message, std::size_t position, error_kind kind=error_kind::syntax) |
| | Builds the error.
|
| |
| error_kind | kind () const noexcept |
| | Whether the pattern is malformed (syntax) or well-formed but unsupported by REAL.
|
| |
| const char * | what () const noexcept override |
| | Returns the formatted error message (with position).
|
| |
| std::size_t | position () const noexcept |
| | Returns the byte offset in the pattern where the error was found.
|
| |
|
|
std::string | message_ |
| | Formatted message returned by what().
|
| |
|
std::size_t | position_ |
| | Offset in the pattern text.
|
| |
|
error_kind | kind_ |
| | Malformed (syntax) vs unsupported-by-REAL.
|
| |
The exception every rejected pattern throws: a message with the pattern offset it was found at, plus an error_kind a caller can branch on without parsing what. In a constexpr context (static_regex) reaching the throw is a compile-time error, the message appearing in the diagnostic trace.
◆ regex_error()
| real::regex_error::regex_error |
( |
const std::string & |
message, |
|
|
std::size_t |
position, |
|
|
error_kind |
kind = error_kind::syntax |
|
) |
| |
|
inline |
Builds the error.
- Parameters
-
| [in] | message | Human-readable cause. |
| [in] | position | Byte offset in the pattern where the error was found. |
| [in] | kind | Whether the pattern is malformed or merely unsupported (default syntax). |
◆ kind()
Whether the pattern is malformed (syntax) or well-formed but unsupported by REAL.
- Returns
- The classification.
◆ position()
| std::size_t real::regex_error::position |
( |
| ) |
const |
|
inlinenoexcept |
Returns the byte offset in the pattern where the error was found.
- Returns
- The offset into the pattern text.
◆ what()
| const char * real::regex_error::what |
( |
| ) |
const |
|
inlineoverridenoexcept |
Returns the formatted error message (with position).
- Returns
- The message, valid for this object's lifetime.
The documentation for this class was generated from the following file: