Initial MSVC 2008 projects workspace
This commit is contained in:
20
libl2c_utils/l2c_exception.h
Normal file
20
libl2c_utils/l2c_exception.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#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 );
|
||||
};
|
Reference in New Issue
Block a user