summaryrefslogtreecommitdiff
path: root/MLKThrowException.h
blob: 32e39c862d6f65dbbf70af4fddf7cfe7843aa2d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* -*- mode: objc; coding: utf-8 -*- */
/* Copyright 2008, Matthias Benkard. */

#include <Foundation/NSException.h>

@class MLKSymbol;


@interface MLKThrowException : NSException
{
  MLKSymbol *_catchTag;
  id _value;
}

-(MLKThrowException *) initWithCatchTag:(MLKSymbol *)catchTag
                                  value:(id)value;

-(MLKSymbol *) catchTag;
-(id) value;

-(void) dealloc;
@end