@@ -16,12 +16,12 @@ #import "OFException.h" @class OFThread; -/** - * \brief An exception indicating that starting a thread failed. +/*! + * @brief An exception indicating that starting a thread failed. */ @interface OFThreadStartFailedException: OFException { OFThread *thread; } @@ -28,28 +28,28 @@ #ifdef OF_HAVE_PROPERTIES @property (readonly, retain, nonatomic) OFThread *thread; #endif -/** - * \param class_ The class of the object which caused the exception - * \param thread The thread which could not be started - * \return An initialized thread start failed exception +/*! + * @param class_ The class of the object which caused the exception + * @param thread The thread which could not be started + * @return An initialized thread start failed exception */ + (instancetype)exceptionWithClass: (Class)class_ thread: (OFThread*)thread; -/** +/*! * Initializes an already allocated thread start failed exception. * - * \param class_ The class of the object which caused the exception - * \param thread The thread which could not be started - * \return An initialized thread start failed exception + * @param class_ The class of the object which caused the exception + * @param thread The thread which could not be started + * @return An initialized thread start failed exception */ - initWithClass: (Class)class_ thread: (OFThread*)thread; -/** - * \return The thread which could not be started +/*! + * @return The thread which could not be started */ - (OFThread*)thread; @end