ObjFW  Diff

Differences From Artifact [ae918491aa]:

To Artifact [adf5140fee]:


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 "OFOutOfRangeException.h"
#import "OFString.h"

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

	description = [[OFString alloc] initWithFormat:
	    @"Value out of range in class %@!", inClass];
	_description = [[OFString alloc] initWithFormat:
	    @"Value out of range in class %@!", _inClass];

	return description;
	return _description;
}
@end