20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
* POSSIBILITY OF SUCH DAMAGE.
*/
#import "SL3Exception.h"
@implementation SL3Exception
@synthesize connection = _connection, errorCode = _errorCode;
+ (instancetype)exceptionWithConnection: (SL3Connection *)connection
errorCode: (int)errorCode
{
return [[[self alloc] initWithConnection: connection
errorCode: errorCode] autorelease];
}
- (instancetype)initWithConnection: (SL3Connection *)connection
errorCode: (int)errorCode
{
self = [super init];
_connection = [connection retain];
|
>
>
>
>
>
>
>
>
>
>
|
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
|
* POSSIBILITY OF SUCH DAMAGE.
*/
#import "SL3Exception.h"
@implementation SL3Exception
@synthesize connection = _connection, errorCode = _errorCode;
+ (instancetype)exception
{
OF_UNRECOGNIZED_SELECTOR
}
+ (instancetype)exceptionWithConnection: (SL3Connection *)connection
errorCode: (int)errorCode
{
return [[[self alloc] initWithConnection: connection
errorCode: errorCode] autorelease];
}
- (instancetype)init
{
OF_INVALID_INIT_METHOD
}
- (instancetype)initWithConnection: (SL3Connection *)connection
errorCode: (int)errorCode
{
self = [super init];
_connection = [connection retain];
|