@@ -66,11 +66,11 @@ + (instancetype)exceptionWithStream: (OFSeekableStream *)stream offset: (of_offset_t)offset whence: (int)whence errNo: (int)errNo; -- init OF_UNAVAILABLE; +- (instancetype)init OF_UNAVAILABLE; /*! * @brief Initializes an already allocated seek failed exception. * * @param stream The stream for which seeking failed @@ -77,12 +77,12 @@ * @param offset The offset to which seeking failed * @param whence To what the offset is relative * @param errNo The errno of the error that occurred * @return An initialized seek failed exception */ -- initWithStream: (OFSeekableStream *)stream - offset: (of_offset_t)offset - whence: (int)whence - errNo: (int)errNo OF_DESIGNATED_INITIALIZER; +- (instancetype)initWithStream: (OFSeekableStream *)stream + offset: (of_offset_t)offset + whence: (int)whence + errNo: (int)errNo OF_DESIGNATED_INITIALIZER; @end OF_ASSUME_NONNULL_END