24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
-
-
+
+
|
#endif
OF_ASSUME_NONNULL_BEGIN
@class OFThread;
/**
* @class OFStartThreadFailedException \
* OFStartThreadFailedException.h ObjFW/OFStartThreadFailedException.h
* @class OFStartThreadFailedException OFStartThreadFailedException.h
* ObjFW/ObjFW.h
*
* @brief An exception indicating that starting a thread failed.
*/
@interface OFStartThreadFailedException: OFException
{
OFThread *_Nullable _thread;
int _errNo;
|