@@ -17,11 +17,11 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN -/*! +/** * @class OFUndefinedKeyException \ * OFUndefinedKeyException.h ObjFW/OFUndefinedKeyException.h * * @brief An exception indicating that a key is undefined (e.g. for Key Value * Coding). @@ -31,28 +31,28 @@ id _object; OFString *_key; id _Nullable _value; } -/*! +/** * @brief The object on which the key is undefined. */ @property (readonly, nonatomic) id object; -/*! +/** * @brief The key which is undefined. */ @property (readonly, nonatomic) OFString *key; -/*! +/** * @brief The value for the undefined key */ @property OF_NULLABLE_PROPERTY (readonly, nonatomic) id value; + (instancetype)exception OF_UNAVAILABLE; -/*! +/** * @brief Creates a new, autoreleased undefined key exception. * * @param object The object on which the key is undefined * @param key The key which is undefined * @@ -59,11 +59,11 @@ * @return A new, autoreleased undefined key exception */ + (instancetype)exceptionWithObject: (id)object key: (OFString *)key; -/*! +/** * @brief Creates a new, autoreleased undefined key exception. * * @param object The object on which the key is undefined * @param key The key which is undefined * @param value The value for the undefined key @@ -74,11 +74,11 @@ key: (OFString *)key value: (nullable id)value; - (instancetype)init OF_UNAVAILABLE; -/*! +/** * @brief Initializes an already allocated undefined key exception. * * @param object The object on which the key is undefined * @param key The key which is undefined * @@ -85,11 +85,11 @@ * @return An initialized undefined key exception */ - (instancetype)initWithObject: (id)object key: (OFString *)key; -/*! +/** * @brief Initializes an already allocated undefined key exception. * * @param object The object on which the key is undefined * @param key The key which is undefined * @param value The value for the undefined key