@@ -866,16 +866,28 @@ * \return The errno from when the exception was created */ - (int)errNo; @end +/** + * \brief An exception indicating that starting a thread failed. + */ +@interface OFThreadStartFailedException: OFException {} +@end + /** * \brief An exception indicating that joining a thread failed. */ @interface OFThreadJoinFailedException: OFException {} @end +/** + * \brief An exception indicating that a thread is still running. + */ +@interface OFThreadStillRunningException: OFException {} +@end + /** * \brief An exception indicating that locking a mutex failed. */ @interface OFMutexLockFailedException: OFException {} @end