@@ -30,14 +30,19 @@ { id _socket; int _errNo; } -#ifdef OF_HAVE_PROPERTIES +/*! + * The socket which could not accept a connection. + */ @property (readonly, retain) id socket; + +/*! + * @return The errno from when the exception was created. + */ @property (readonly) int errNo; -#endif /*! * @brief Creates a new, autoreleased accept failed exception. * * @param socket The socket which could not accept a connection @@ -54,20 +59,6 @@ * @param errNo The errno for the error * @return An initialized accept failed exception */ - initWithSocket: (id)socket errNo: (int)errNo; - -/*! - * @brief Returns the socket which could not accept a connection. - * - * @return The socket which could not accept a connection - */ -- (id)socket; - -/*! - * @brief Returns the errno from when the exception was created. - * - * @return The errno from when the exception was created - */ -- (int)errNo; @end