@@ -35,29 +35,25 @@ #endif /*! * @brief Creates a new, autoreleased 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 A new, autoreleased thread start failed exception */ -+ (instancetype)exceptionWithClass: (Class)class_ - thread: (OFThread*)thread; ++ (instancetype)exceptionWithThread: (OFThread*)thread; /*! * @brief 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 */ -- initWithClass: (Class)class_ - thread: (OFThread*)thread; +- initWithThread: (OFThread*)thread; /*! * @brief Returns the thread which could not be started. * * @return The thread which could not be started */ - (OFThread*)thread; @end