/*
 * Base exception
 *
 * Author(s) : Catalin Dumitrescu (catalind@acm.org)
 *
 * File: scheme_exc.hh
 * Created: Mon Aug 27 10:15:57 CDT 2001
 *
 */

#ifndef _SCHEME_EXC_
#define _SCHEME_EXC_

#include <string>
using namespace std;

class schemeException {
  string msg;

public:
  schemeException (string s) { msg = s; }
  string getMessage () { return msg; }
};

#endif // _SCHEME_EXC_

