Index: src/OFExceptions.m ================================================================== --- src/OFExceptions.m +++ src/OFExceptions.m @@ -84,11 +84,11 @@ - initWithClass: (Class)class_ { self = [super init]; - class_ = class_; + inClass = class_; return self; } - (void)dealloc @@ -1257,11 +1257,11 @@ if (string != nil) return string; string = [[OFString alloc] initWithFormat: @"A connection to service %s on node %s could not be established " - @"in class %s! " ERRFMT, [node cString], [service cString], + @"in class %s! " ERRFMT, [service cString], [node cString], [inClass className], ERRPARAM]; return string; }