Lines Matching full:exception
20 #include <exception>
33 * Returns a vector containing the specified exception and any nested inner
36 * If the exception contains nested inner exceptions, the returned vector will
37 * be ordered from innermost exception to outermost exception.
42 * @param eptr exception pointer
48 * Gets the error messages from the specified exception and any nested inner
51 * If the exception contains nested inner exceptions, the messages in the
52 * returned vector will be ordered from innermost exception to outermost
53 * exception.
55 * @param e exception
58 std::vector<std::string> getMessages(const std::exception& e);
67 * Builds a vector containing the specified exception and any nested inner
70 * Stores the exceptions in the specified vector, from innermost exception to
71 * outermost exception.
73 * @param eptr exception pointer
80 * Gets the error messages from the specified exception and any nested inner
83 * Stores the error messages in the specified vector, from innermost exception
84 * to outermost exception.
86 * @param e exception
89 void getMessages(const std::exception& e, std::vector<std::string>& messages);