@@ -44,16 +44,16 @@ @throw [OFInitializationFailedException exceptionWithClass: class]; } #endif -+ (instancetype)exceptionWithHost: (OFString*)host ++ (instancetype)exceptionWithHost: (OFString *)host { return [[[self alloc] initWithHost: host] autorelease]; } -+ (instancetype)exceptionWithHost: (OFString*)host ++ (instancetype)exceptionWithHost: (OFString *)host error: (int)error { return [[[self alloc] initWithHost: host error: error] autorelease]; } @@ -61,11 +61,11 @@ + (instancetype)exceptionWithError: (int)error { return [[[self alloc] initWithError: error] autorelease]; } -- initWithHost: (OFString*)host +- initWithHost: (OFString *)host { self = [super init]; @try { _host = [host copy]; @@ -75,11 +75,11 @@ } return self; } -- (instancetype)initWithHost: (OFString*)host +- (instancetype)initWithHost: (OFString *)host error: (int)error { self = [super init]; @try { @@ -107,11 +107,11 @@ [_host release]; [super dealloc]; } -- (OFString*)description +- (OFString *)description { /* FIXME: Add proper description for Win32 */ #ifndef OF_WINDOWS if (_error == 0) { #endif