mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
18 lines
372 B
C
18 lines
372 B
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
|