@@ -64,11 +64,11 @@ + (instancetype)exceptionWithPath: (OFString *)path owner: (nullable OFString *)owner group: (nullable OFString *)group errNo: (int)errNo; -- init OF_UNAVAILABLE; +- (instancetype)init OF_UNAVAILABLE; /*! * @brief Initializes an already allocated change owner failed exception. * * @param path The path of the item @@ -75,12 +75,12 @@ * @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 - errNo: (int)errNo OF_DESIGNATED_INITIALIZER; +- (instancetype)initWithPath: (OFString *)path + owner: (nullable OFString *)owner + group: (nullable OFString *)group + errNo: (int)errNo OF_DESIGNATED_INITIALIZER; @end OF_ASSUME_NONNULL_END