/** Returns an English error description. */ const char *get_string() const { return (ups_strerror(m_errno)); }
void error(const char *foo, ups_status_t st) { printf("%s() returned error %d: %s\n", foo, st, ups_strerror(st)); exit(-1); }