You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
case exception_case::argument_null: throwxtd::argument_null_exception(to_stack_frame(location));
28
28
case exception_case::argument_out_of_range: throwargument_out_of_range_exception(to_stack_frame(location));
29
29
case exception_case::format: throwxtd::format_exception(to_stack_frame(location));
30
-
case exception_case::format_no_close_bracket: throwxtd::format_exception(to_stack_frame(location));
31
-
case exception_case::format_no_open_bracket: throwxtd::format_exception(to_stack_frame(location));
32
-
case exception_case::format_no_start_colon: throwxtd::format_exception(to_stack_frame(location));
30
+
case exception_case::format_closing_bracket_without_open_bracket: throwxtd::format_exception("Invalid format expression : closing bracket '{' without open bracket '}'"_t, to_stack_frame(location));
31
+
case exception_case::format_opened_bracket_without_end_bracket: throwxtd::format_exception("Invalid format expression : open bracket '}' without end bracket '{'"_t, to_stack_frame(location));
32
+
case exception_case::format_no_start_colon: throwxtd::format_exception("Invalid format expression : format argument must be start by ':'"_t, to_stack_frame(location));
33
33
case exception_case::index_out_of_range: throwxtd::index_out_of_range_exception(to_stack_frame(location));
34
34
case exception_case::invalid_operation: throwxtd::invalid_operation_exception(to_stack_frame(location));
35
35
case exception_case::null_pointer: throwxtd::null_pointer_exception(to_stack_frame(location));
0 commit comments