summaryrefslogtreecommitdiff
path: root/MLKThrowException.h
diff options
context:
space:
mode:
Diffstat (limited to 'MLKThrowException.h')
-rw-r--r--MLKThrowException.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/MLKThrowException.h b/MLKThrowException.h
index b2321e7..1541302 100644
--- a/MLKThrowException.h
+++ b/MLKThrowException.h
@@ -16,22 +16,22 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <Foundation/NSException.h>
+#import "MLKSymbol.h"
-@class MLKSymbol;
+#include <Foundation/NSException.h>
@interface MLKThrowException : NSException
{
MLKSymbol *_catchTag;
- id _value;
+ NSArray *_values;
}
--(MLKThrowException *) initWithCatchTag:(MLKSymbol *)catchTag
- value:(id)value;
+-(id) initWithCatchTag:(MLKSymbol *)catchTag
+ values:(NSArray *)values;
-(MLKSymbol *) catchTag;
--(id) value;
+-(NSArray *) thrownValues;
-(void) dealloc;
@end