You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
282 B
Objective-C

#include "ModTest.h"
@interface MyException : Test {
@private
char *_name;
char *_reason;
}
+ (void) raise: (char *)name
format: (char *)reason;
- (void) raise;
- (char *)name;
- (char *)reason;
- (MyException *)initWithName:(char *)name
reason:(char *)reason;
@end