ObjFW  Check-in [28ed6c344a]

Overview
Comment:Better description for OFException.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 28ed6c344a5c9c558b601c4b6d496cfc761d6012aa2322fd1bc7f1766c3294b8
User & Date: js on 2012-06-17 22:47:25
Other Links: manifest | tags
Context
2012-07-03
15:49
Use the copy attribute in properties for blocks. check-in: 4d18a4b596 user: js tags: trunk
2012-06-17
22:47
Better description for OFException. check-in: 28ed6c344a user: js tags: trunk
2012-06-11
23:08
Add OF_PATH_PARENT_DIR. check-in: bfd8f4cfec user: js tags: trunk
Changes

Modified src/exceptions/OFException.m from [edd904354d] to [13ae2563a0].

54
55
56
57
58
59
60


61


62


63
- (Class)inClass
{
	return inClass;
}

- (OFString*)description
{


	return @"An exception occurred";


}


@end







>
>
|
>
>
|
>
>

54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
- (Class)inClass
{
	return inClass;
}

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

	description = [[OFString alloc] initWithFormat:
	    @"An exception of class %@ occurred in class %@", isa, inClass];

	return description;
}
@end