ObjFW  Diff

Differences From Artifact [7b073a6102]:

To Artifact [4ebc851ed7]:


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

#import "OFInvalidFormatException.h"
#import "OFString.h"

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

	_description = [[OFString alloc] initWithFormat:
	    @"The format is invalid for class %@!", _inClass];

	return _description;
}
@end







<
<
|
<

|
<
<

18
19
20
21
22
23
24


25

26
27


28

#import "OFInvalidFormatException.h"
#import "OFString.h"

@implementation OFInvalidFormatException
- (OFString*)description
{


	return [OFString stringWithFormat:

	    @"The format is invalid for class %@!", _inClass];
}


@end