www.pudn.com > antispam-addin.rar > exception.hxx


#ifndef	EXCEPTION_H 
#define EXCEPTION_H 
 
#include "unihead.hxx" 
 
class Exception   
{ 
public: 
	Exception(); 
	virtual ~Exception(); 
 
	char *GetRecentError(); 
 
protected: 
	char *m_pszError; 
}; 
 
#endif //EXCEPTION_H