22OF_ASSUME_NONNULL_BEGIN
45@property OF_NULLABLE_PROPERTY (readonly, nonatomic)
id object;
54+ (instancetype)exceptionWithSelector: (
SEL)selector
55 object: (nullable
id)object;
66- (instancetype)initWithSelector: (
SEL)selector
67 object: (nullable
id)object OF_DESIGNATED_INITIALIZER;
69- (instancetype)
init OF_UNAVAILABLE;
The base class for all exceptions in ObjFW.
Definition OFException.h:157
instancetype exception()
Creates a new, autoreleased exception.
Definition OFException.m:283
An exception indicating that a method or part of it is not implemented.
Definition OFNotImplementedException.h:31
id object
The object which does not (fully) implement the selector.
Definition OFNotImplementedException.h:45
SEL selector
The selector which is not or not fully implemented.
Definition OFNotImplementedException.h:40
instancetype init()
Initializes an already allocated object.
Definition OFObject.m:696