ObjFW  Diff

Differences From Artifact [33d6295197]:

To Artifact [ec481228e3]:


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

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

@implementation OFInvalidServerReplyException
- (OFString*)description
{


	return [OFString stringWithFormat:

	    @"Got an invalid reply from the server in class %@", _inClass];
}


@end