678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
|
/**
* An OFException indicating that joining the thread failed.
*/
@interface OFThreadJoinFailedException: OFException {}
@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
/**
|
<
<
<
<
<
<
|
678
679
680
681
682
683
684
685
686
687
688
689
690
691
|
/**
* An OFException indicating that joining the thread failed.
*/
@interface OFThreadJoinFailedException: OFException {}
@end
/**
* An OFException indicating that locking a mutex failed.
*/
@interface OFMutexLockFailedException: OFException {}
@end
/**
|