static void check(OSStatus status) { if (status != errSecSuccess) throwMe(status); }
static void throwMe(int err) __attribute__((noreturn));
+ static void throwMe(int err, char const *message, ...) __attribute__((noreturn));
static MacOSError make(int err);
};