l2-unlegits/libl2c_utils/l2c_exception.h
2012-02-01 05:25:08 +00:00

21 lines
351 B
C++

#pragma once
#include "l2c_utils.h"
class L2C_UTILS_API L2C_Exception
{
public:
L2C_Exception();
L2C_Exception( const char *_Format, ... );
~L2C_Exception();
public:
const char *what() const;
protected:
char *m_what;
};
class L2C_UTILS_API MysqlException: public L2C_Exception
{
public:
MysqlException( void *pvMysql );
};