@@ -28,14 +28,19 @@ { OFStream *_stream; int _errNo; } -#ifdef OF_HAVE_PROPERTIES +/*! + * The stream for which the option could not be retrieved. + */ @property (readonly, retain) OFStream *stream; + +/*! + * The errno of the error that occurred. + */ @property (readonly) int errNo; -#endif /*! * @brief Creates a new, autoreleased get option failed exception. * * @param stream The stream for which the option could not be gotten @@ -52,20 +57,6 @@ * @param errNo The errno of the error that occurred * @return An initialized get option failed exception */ - initWithStream: (OFStream*)stream errNo: (int)errNo; - -/*! - * @brief Returns the stream for which the option could not be gotten. - * - * @return The stream for which the option could not be gotten - */ -- (OFStream*)stream; - -/*! - * @brief Returns the errno of the error that occurred. - * - * @return The errno of the error that occurred - */ -- (int)errNo; @end