quakeforge/ruamoko/scheme/Error.h
Bill Currie 75ec6bf244 Clean out some unnecessary types from the progs engine and clean up the mess.
This is a nasty commit, sorry, but 99% of the commit is interdependent.
2011-01-10 12:25:31 +09:00

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