30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
*
* @brief An exception indicating broadcasting a condition failed.
*/
@interface OFConditionBroadcastFailedException: OFException
{
OFCondition *_condition;
int _errNo;
}
/**
* @brief The condition which could not be broadcasted.
*/
@property (readonly, nonatomic) OFCondition *condition;
|
>
|
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
*
* @brief An exception indicating broadcasting a condition failed.
*/
@interface OFConditionBroadcastFailedException: OFException
{
OFCondition *_condition;
int _errNo;
OF_RESERVE_IVARS(OFConditionBroadcastFailedException, 4)
}
/**
* @brief The condition which could not be broadcasted.
*/
@property (readonly, nonatomic) OFCondition *condition;
|