16#import "OFException.h"
18OF_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;
The base class for all exceptions in ObjFW.
Definition OFException.h:151
An exception indicating that a method or part of it is not implemented.
Definition OFNotImplementedException.h:28