LA_library/laerror.h

15 lines
197 B
C
Raw Normal View History

2005-02-04 15:31:42 +01:00
#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