@@ -95,22 +95,22 @@ /** * \param class_ The class of the object which caused the exception * \param size The size of the memory that couldn't be allocated * \return A new no memory exception */ -+ newWithClass: (Class)class_ - size: (size_t)size; ++ newWithClass: (Class)class_ + requestedSize: (size_t)size; /** * Initializes an already allocated no memory exception. * * \param class_ The class of the object which caused the exception * \param size The size of the memory that couldn't be allocated * \return An initialized no memory exception */ - initWithClass: (Class)class_ - size: (size_t)size; + requestedSize: (size_t)size; /** * \return The size of the memoory that couldn't be allocated */ - (size_t)requestedSize; @@ -334,22 +334,22 @@ /** * \param class_ The class of the object which caused the exception * \param size The requested size of the data that couldn't be read / written * \return A new open file failed exception */ -+ newWithClass: (Class)class_ - size: (size_t)size; ++ newWithClass: (Class)class_ + requestedSize: (size_t)size; /** * Initializes an already allocated read or write failed exception. * * \param class_ The class of the object which caused the exception * \param size The requested size of the data that couldn't be read / written * \return A new open file failed exception */ - initWithClass: (Class)class_ - size: (size_t)size; + requestedSize: (size_t)size; /** * \return The errno from when the exception was created */ - (int)errNo;