ObjFW  Diff

Differences From Artifact [b287da5fe9]:

To Artifact [4b057b44b4]:


55
56
57
58
59
60
61
62
63
64



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



79
80
81
82
55
56
57
58
59
60
61



62
63
64
65
66
67
68
69
70
71
72
73
74
75



76
77
78
79
80
81
82







-
-
-
+
+
+











-
-
-
+
+
+




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

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

OF_ASSUME_NONNULL_END