Differences From Artifact [ed61ab5b51]:
- File src/exceptions/OFConditionSignalFailedException.m — part of check-in [cc4cb0d824] at 2017-05-02 21:10:33 on branch trunk — exceptions: Add nullability specifiers (user: js, size: 1322) [annotate] [blame] [check-ins using]
To Artifact [f8777a8229]:
- File
src/exceptions/OFConditionSignalFailedException.m
— part of check-in
[4af49a13c3]
at
2017-05-07 20:10:13
on branch trunk
— Small code style change
Casts are now written like types in variable declarations. (user: js, size: 1325) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
19 20 21 22 23 24 25 | #import "OFConditionSignalFailedException.h" #import "OFString.h" #import "OFCondition.h" @implementation OFConditionSignalFailedException @synthesize condition = _condition; | | | | | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
#import "OFConditionSignalFailedException.h"
#import "OFString.h"
#import "OFCondition.h"
@implementation OFConditionSignalFailedException
@synthesize condition = _condition;
+ (instancetype)exceptionWithCondition: (OFCondition *)condition
{
return [[[self alloc] initWithCondition: condition] autorelease];
}
- initWithCondition: (OFCondition *)condition
{
self = [super init];
_condition = [condition retain];
return self;
}
- (void)dealloc
{
[_condition release];
[super dealloc];
}
- (OFString *)description
{
if (_condition != nil)
return [OFString stringWithFormat:
@"Signaling a condition of type %@ failed!",
[_condition class]];
else
return @"Signaling a condition failed!";
}
@end
|