ObjFW  Diff

Differences From Artifact [c419382595]:

To Artifact [b85c9dd392]:


49
50
51
52
53
54
55
56

57
58
59
60
61
62
63
64
65
66


67
68
69
49
50
51
52
53
54
55

56
57
58
59
60
61
62
63
64


65
66
67
68
69







-
+








-
-
+
+



 * @param selector The selector which is not or not fully implemented
 * @param object The object which does not (fully) implement the selector
 * @return A new, autoreleased not implemented exception
 */
+ (instancetype)exceptionWithSelector: (SEL)selector
			       object: (id)object;

- init OF_UNAVAILABLE;
- (instancetype)init OF_UNAVAILABLE;

/*!
 * @brief Initializes an already allocated not implemented exception.
 *
 * @param selector The selector which is not or not fully implemented
 * @param object The object which does not (fully) implement the selector
 * @return An initialized not implemented exception
 */
- initWithSelector: (SEL)selector
	    object: (id)object OF_DESIGNATED_INITIALIZER;
- (instancetype)initWithSelector: (SEL)selector
			  object: (id)object OF_DESIGNATED_INITIALIZER;
@end

OF_ASSUME_NONNULL_END