9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
* the packaging of this file.
*/
#import "OFObject.h"
/**
* The OFException class is the base class for all exceptions in ObjFW.
*/
@interface OFException: OFObject
{
Class class;
char *string;
}
|
>
>
|
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
* the packaging of this file.
*/
#import "OFObject.h"
/**
* The OFException class is the base class for all exceptions in ObjFW.
*
* IMPORTANT: Exceptions do NOT use OFAutoreleasePools!!
*/
@interface OFException: OFObject
{
Class class;
char *string;
}
|