1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
/**
Externs.m
Misc. variables
Copyright (c) 2002 Free Software Foundation
This file is part of the StepTalk project.
*/
#import <Foundation/NSString.h>
NSString *STCompilerSyntaxException = @"STCompilerSyntaxException";
NSString *STCompilerGenericException = @"STCompilerGenericException";
NSString *STCompilerInconsistencyException =@"STCompilerInconsistencyException";
NSString *STInterpreterGenericException = @"STInterpreterGenericException";
NSString *STInterpreterReturnException = @"STInterpreterReturnException";
|