ObjFW  Diff

Differences From Artifact [03c9f4b0e9]:

To Artifact [4830360b39]:


37
38
39
40
41
42
43
44

45
46
47
48
49
50
51
 */
- (OFString*)string;
@end

/**
 * The OFException class is the base class for all exceptions in ObjFW.
 *
 * IMPORTANT: Exceptions do NOT use OFAutoreleasePools!!

 */
@interface OFException: OFObject
{
	Class	 class_;
	OFString *string;
}








|
>







37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
 */
- (OFString*)string;
@end

/**
 * The OFException class is the base class for all exceptions in ObjFW.
 *
 * IMPORTANT: Exceptions do NOT use OFAutoreleasePools and can't be autoreleased
 * either! You have to make sure to dealloc the exception in your @catch block!
 */
@interface OFException: OFObject
{
	Class	 class_;
	OFString *string;
}