Lines Matching full:throw

174     /// \throw text::syntax_error If the statement is not correctly defined.
183 throw text::syntax_error("Empty statement"); in parse()
187 throw text::syntax_error(F("Unknown statement '%s'") % words[0]); in parse()
191 throw text::syntax_error(F("Invalid number of arguments for " in parse()
303 /// \throw text::syntax_error If the input is not a valid statement.
318 /// \throw text::syntax_error If the input is not valid.
391 /// \throw text::syntax_error If the input is not valid.
452 /// \throw text::syntax_error If the expressions in the line are malformed.
508 /// \throw text::syntax_error If the input is not valid. Note that the
623 /// \throw text::syntax_error If the variable does not exist.
629 throw text::syntax_error(F("Unknown variable '%s'") % name); in get_variable()
640 /// \throw text::syntax_error If the vector does not exist.
646 throw text::syntax_error(F("Unknown vector '%s'") % name); in get_vector()
659 /// \throw text::syntax_error If the vector does not existor if the index is out
672 throw text::syntax_error(F("Index '%s' not an integer, value '%s'") % in get_vector()
676 throw text::syntax_error(F("Index '%s' out of range at position '%s'") % in get_vector()
695 /// \throw text::syntax_error If there is any problem while evaluating the
707 throw text::syntax_error(F("Expected ')' in expression '%s')") % in evaluate()
710 throw text::syntax_error(F("Unexpected text found after ')' in " in evaluate()
733 /// \throw text::syntax_error If there is any problem processing the input.
749 /// \throw text::error If the input or output files cannot be opened.
750 /// \throw text::syntax_error If there is any problem processing the input.
757 throw text::error(F("Failed to open %s for read") % input_file); in instantiate()
761 throw text::error(F("Failed to open %s for write") % output_file); in instantiate()