// Exception model
//
const char *
-Error::what () const throw()
+Error::what () const _NOEXCEPT
{
return "CSSM client library error";
}
}
AttachmentImpl::~AttachmentImpl()
+try
{
detach();
}
+catch (...) {
+ return;
+}
void
AttachmentImpl::make(CSSM_SERVICE_TYPE subserviceType)