summaryrefslogtreecommitdiff
path: root/MLKUndefinedVariableException.h
blob: 16005cef72b748bb0004648e68fb0be1392c69b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* -*- mode: objc; coding: utf-8 -*- */
/* Copyright 2008, Matthias Benkard. */

#import <Foundation/NSException.h>

@class MLKSymbol, MLKEnvironment;


@interface MLKUndefinedVariableException : NSException
{
  MLKSymbol *variableName;
  MLKEnvironment *environment;
}

-(MLKUndefinedVariableException *) initWithEnvironment:(id)environment
                                          variableName:(id)symbol;
@end