mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
75ec6bf244
This is a nasty commit, sorry, but 99% of the commit is interdependent.
17 lines
378 B
Objective-C
17 lines
378 B
Objective-C
#ifndef __Error_h
|
|
#define __Error_h
|
|
#include "SchemeObject.h"
|
|
|
|
@interface Error: SchemeObject
|
|
{
|
|
string type, message;
|
|
}
|
|
+ (id) type: (string) t message: (string) m by: (SchemeObject []) o;
|
|
+ (id) type: (string) t message: (string) m;
|
|
- (id) initWithType: (string) t message: (string) m by: (SchemeObject []) o;
|
|
- (string) type;
|
|
- (string) message;
|
|
|
|
@end
|
|
|
|
#endif //__Error_h
|