@@ -28,27 +28,31 @@ #ifdef OF_HAVE_PROPERTIES @property (readonly, retain, nonatomic) id object; #endif /** + * \brief Creates a new, autoreleased enumeration mutation exception. + * * \param class_ The class of the object which caused the exception * \param object The object which was mutated during enumeration - * \return A new enumeration mutation exception + * \return A new, autoreleased enumeration mutation exception */ + (instancetype)exceptionWithClass: (Class)class_ object: (id)object; /** - * Initializes an already allocated enumeration mutation exception. + * \brief Initializes an already allocated enumeration mutation exception. * * \param class_ The class of the object which caused the exception * \param object The object which was mutated during enumeration * \return An initialized enumeration mutation exception */ - initWithClass: (Class)class_ object: (id)object; /** + * \brief Returns the object which was mutated during enumeration. + * * \return The object which was mutated during enumeration */ - (id)object; @end