@@ -30,29 +30,25 @@ #endif /*! * @brief Creates a new, autoreleased hash already calculated exception. * - * @param class_ The class of the object which caused the exception - * @param hashObject The hash which has already been calculated + * @param hash The hash which has already been calculated * @return A new, autoreleased hash already calculated exception */ -+ (instancetype)exceptionWithClass: (Class)class_ - hash: (id )hashObject; ++ (instancetype)exceptionWithHash: (id )hash; /*! * @brief Initializes an already allocated hash already calculated exception. * - * @param class_ The class of the object which caused the exception - * @param hashObject The hash which has already been calculated + * @param hash The hash which has already been calculated * @return An initialized hash already calculated exception */ -- initWithClass: (Class)class_ - hash: (id )hashObject; +- initWithHash: (id )hash; /*! * @brief Returns the hash which has already been calculated. * * @return The hash which has already been calculated */ - (id )hashObject; @end