16 #import "OFException.h" 18 OF_ASSUME_NONNULL_BEGIN
37 @property (readonly, nonatomic)
SEL selector;
42 @property OF_NULLABLE_PROPERTY (readonly, nonatomic)
id object;
51 + (instancetype)exceptionWithSelector: (
SEL)selector
52 object: (nullable
id)object;
54 + (instancetype)exception OF_UNAVAILABLE;
63 - (instancetype)initWithSelector: (
SEL)selector
64 object: (nullable
id)object OF_DESIGNATED_INITIALIZER;
66 - (instancetype)init OF_UNAVAILABLE;
An exception indicating that a method or part of it is not implemented.
Definition: OFNotImplementedException.h:27
The base class for all exceptions in ObjFW.
Definition: OFException.h:150
id object
The object which does not (fully) implement the selector.
Definition: OFNotImplementedException.h:42