quakeforge/ruamoko/scheme/Error.h

18 lines
376 B
C
Raw Normal View History

#ifndef __Error_h
#define __Error_h
#include "SchemeObject.h"
@interface Error: SchemeObject
{
string type, message;
}
2011-02-14 13:39:43 +00:00
+ (id) type: (string) t message: (string) m by: (SchemeObject *) o;
+ (id) type: (string) t message: (string) m;
2011-02-14 13:39:43 +00:00
- (id) initWithType: (string) t message: (string) m by: (SchemeObject *) o;
- (string) type;
- (string) message;
@end
#endif //__Error_h