@@ -0,0 +1,14 @@
#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
The note is not visible to the blocked user.