LA_library/laerror.h
2005-02-04 14:31:42 +00:00

15 lines
197 B
C++

#ifndef _LAERROR_H_
#define _LAERROR_H_
//exception class for laerror
class LAerror
{
const char *msg;
public:
LAerror(const char *s) {msg=s;};
};
extern void laerror(const char *);
#endif