ObjFW  Diff

Differences From Artifact [c6c6b9a8bb]:

To Artifact [5f9ac7b48a]:


18
19
20
21
22
23
24
25
26


27
28
29


30
31

32
33
18
19
20
21
22
23
24


25
26
27


28
29
30

31
32
33







-
-
+
+

-
-
+
+

-
+



#import "OFInitializationFailedException.h"
#import "OFString.h"

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

	description = [[OFString alloc] initWithFormat:
	    @"Initialization failed for or in class %@!", inClass];
	_description = [[OFString alloc] initWithFormat:
	    @"Initialization failed for or in class %@!", _inClass];

	return description;
	return _description;
}
@end