quakeforge/ruamoko/scheme/Error.h
Brian Koropoff 256630c84d Added proper error checking and reporting with line numbers. Next:
Runtime errors and support for line number reporting with the error.
2005-05-02 04:58:22 +00:00

17 lines
372 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