Ticket #2511: error_handling.patch

File error_handling.patch, 823 bytes (added by Charles Brockman <cmbrockman@…>, 14 years ago)
  • libs/spirit/doc/qi_and_karma/error_handling.qbk

     
    9999For our example above, when you get a `"</"`, you definitely must see a valid
    100100end-tag label next. It should be the one you got from the start-tag. After that,
    101101you definitely must have a `'>'` next. Otherwise, there is no point in
    102 proceeding forward and trying other branches, regardless where they are. The
     102proceeding and trying other branches, regardless where they are. The
    103103input is definitely erroneous. When this happens, an expectation_failure
    104104exception is thrown. Somewhere outward, the error handler will catch the
    105105exception.