ObjFW  Diff

Differences From Artifact [6f32896ab7]:

To Artifact [33d6295197]:


18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33

#import "OFInvalidServerReplyException.h"
#import "OFString.h"

@implementation OFInvalidServerReplyException
- (OFString*)description
{
	if (description != nil)
		return description;

	description = [[OFString alloc] initWithFormat:
	    @"Got an invalid reply from the server in class %@", inClass];

	return description;
}
@end







|
|

|
|

|


18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33

#import "OFInvalidServerReplyException.h"
#import "OFString.h"

@implementation OFInvalidServerReplyException
- (OFString*)description
{
	if (_description != nil)
		return _description;

	_description = [[OFString alloc] initWithFormat:
	    @"Got an invalid reply from the server in class %@", _inClass];

	return _description;
}
@end