Index: src/OFExceptions.h ================================================================== --- src/OFExceptions.h +++ src/OFExceptions.h @@ -61,13 +61,13 @@ * \return An initialized OFException */ - initWithClass: (Class)class; /** - * \return The class of the object which caused the exception + * \return The class of the object in which the exception happened */ -- (Class)class; +- (Class)inClass; /** * \return An error message for the exception as a C string */ - (const char*)cString; Index: src/OFExceptions.m ================================================================== --- src/OFExceptions.m +++ src/OFExceptions.m @@ -78,11 +78,11 @@ free(string); return [super free]; } -- (Class)class +- (Class)inClass { return class; } - (const char*)cString