22#ifndef OF_HAVE_THREADS
23# error No threads available!
26OF_ASSUME_NONNULL_BEGIN
51@property (readonly, nonatomic)
int errNo;
60+ (instancetype)exceptionWithThread: (nullable
OFThread *)thread
63+ (instancetype)exception OF_UNAVAILABLE;
72- (instancetype)initWithThread: (nullable
OFThread *)thread
73 errNo: (
int)errNo OF_DESIGNATED_INITIALIZER;
75- (instancetype)init OF_UNAVAILABLE;
The base class for all exceptions in ObjFW.
Definition OFException.h:157
An exception indicating that starting a thread failed.
Definition OFStartThreadFailedException.h:37
OFThread * thread
The thread which could not be started.
Definition OFStartThreadFailedException.h:46
A class which provides portable threads.
Definition OFThread.h:66