@@ -43,11 +43,11 @@ /* * We can't use allocMemoryWithSize: here as it might be a @"" literal */ if ((retCString = malloc(retLength)) == NULL) - @throw [OFOutOfMemoryException exceptionWithClass: isa + @throw [OFOutOfMemoryException exceptionWithClass: [self class] requestedSize: retLength]; for (i = 0; i < length; i++) { switch (string[i]) { case '<': @@ -84,11 +84,11 @@ if ((newRetCString = realloc(retCString, retLength + appendLen)) == NULL) { free(retCString); @throw [OFOutOfMemoryException - exceptionWithClass: isa + exceptionWithClass: [self class] requestedSize: retLength + appendLen]; } retCString = newRetCString; retLength += appendLen - 1;