@@ -53,11 +53,11 @@ * @param key The key which is undefined * * @return A new, autoreleased undefined key exception */ + (instancetype)exceptionWithObject: (id)object - key: (OFString*)key; + key: (OFString *)key; /*! * @brief Creates a new, autoreleased undefined key exception. * * @param object The object on which the key is undefined @@ -65,11 +65,11 @@ * @param value The value for the undefined key * * @return A new, autoreleased undefined key exception */ + (instancetype)exceptionWithObject: (id)object - key: (OFString*)key + key: (OFString *)key value: (id)value; /*! * @brief Initializes an already allocated undefined key exception. * @@ -77,11 +77,11 @@ * @param key The key which is undefined * * @return An initialized undefined key exception */ - initWithObject: (id)object - key: (OFString*)key; + key: (OFString *)key; /*! * @brief Initializes an already allocated undefined key exception. * * @param object The object on which the key is undefined @@ -89,10 +89,10 @@ * @param value The value for the undefined key * * @return An initialized undefined key exception */ - initWithObject: (id)object - key: (OFString*)key + key: (OFString *)key value: (id)value; @end OF_ASSUME_NONNULL_END