1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
|
/**
* \brief An exception indicating that unlocking a mutex failed.
*/
@interface OFMutexUnlockFailedException: OFException
@end
/**
* \brief An exception indicating that the hash has already been calculated.
*/
@interface OFHashAlreadyCalculatedException: OFException
@end
/**
|
>
>
>
>
>
>
|
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
|
/**
* \brief An exception indicating that unlocking a mutex failed.
*/
@interface OFMutexUnlockFailedException: OFException
@end
/**
* \brief An exception indicating that a mutex is still locked.
*/
@interface OFMutexLockedException: OFException
@end
/**
* \brief An exception indicating that the hash has already been calculated.
*/
@interface OFHashAlreadyCalculatedException: OFException
@end
/**
|