@@ -21,11 +21,11 @@ #import "OFSandbox.h" @implementation OFSandboxActivationFailedException @synthesize sandbox = _sandbox, errNo = _errNo; -+ (instancetype)exceptionWithSandbox: (OFSandbox*)sandbox ++ (instancetype)exceptionWithSandbox: (OFSandbox *)sandbox errNo: (int)errNo { return [[[self alloc] initWithSandbox: sandbox errNo: errNo] autorelease]; } @@ -33,11 +33,11 @@ - init { OF_INVALID_INIT_METHOD } -- initWithSandbox: (OFSandbox*)sandbox +- initWithSandbox: (OFSandbox *)sandbox errNo: (int)errNo { self = [super init]; _sandbox = [sandbox retain]; @@ -51,11 +51,11 @@ [_sandbox release]; [super dealloc]; } -- (OFString*)description +- (OFString *)description { return [OFString stringWithFormat: @"The sandbox could not be applied: %@", of_strerror(_errNo)]; } @end