@@ -19,10 +19,15 @@ #import "OFAcceptFailedException.h" #import "OFString.h" @implementation OFAcceptFailedException @synthesize socket = _socket, errNo = _errNo; + ++ (instancetype)exception +{ + OF_UNRECOGNIZED_SELECTOR +} + (instancetype)exceptionWithSocket: (id)socket errNo: (int)errNo { return [[[self alloc] initWithSocket: socket