683
684
685
686
687
688
689
|
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
|
+
+
+
+
+
+
+
+
+
+
+
+
|
@end
/**
* An OFException indicating that the thread has been canceled.
*/
@interface OFThreadCanceledException: OFException {}
@end
/**
* An OFException indicating that locking a mutex failed.
*/
@interface OFMutexLockFailedException: OFException {}
@end
/**
* An OFException indicating that unlocking a mutex failed.
*/
@interface OFMutexUnlockFailedException: OFException {}
@end
|