ObjFW  Diff

Differences From Artifact [4201269912]:

To Artifact [e21328b322]:


58
59
60
61
62
63
64
65

66
67
68
69
70
71
72
73
74
75
76
77



78
79
80
58
59
60
61
62
63
64

65
66
67
68
69
70
71
72
73
74



75
76
77
78
79
80







-
+









-
-
-
+
+
+



 * @param errNo The errno of the error that occurred
 * @return A new, autoreleased change permissions failed exception
 */
+ (instancetype)exceptionWithPath: (OFString *)path
		      permissions: (uint16_t)permissions
			    errNo: (int)errNo;

- init OF_UNAVAILABLE;
- (instancetype)init OF_UNAVAILABLE;

/*!
 * @brief Initializes an already allocated change permissions failed exception.
 *
 * @param path The path of the item
 * @param permissions The new permissions for the item
 * @param errNo The errno of the error that occurred
 * @return An initialized change permissions failed exception
 */
- initWithPath: (OFString *)path
   permissions: (uint16_t)permissions
	 errNo: (int)errNo OF_DESIGNATED_INITIALIZER;
- (instancetype)initWithPath: (OFString *)path
		 permissions: (uint16_t)permissions
		       errNo: (int)errNo OF_DESIGNATED_INITIALIZER;
@end

OF_ASSUME_NONNULL_END