Show how to use format xtd::format class with exceptions.
#include <xtd/system_exception>
#include <xtd/argument_out_of_range_exception>
#include <xtd/ustring>
using namespace std;
auto main()->int {
cout << ustring::format("{}", exception()) << endl;
}