| 12345678910111213141516171819202122232425262728293031323334353637 |
- // Copyright: All Rights Reserved
- // Author: egametang@gmail.com (tanghai)
- #ifndef ORM_EXCEPTION_H
- #define ORM_EXCEPTION_H
- #include "Base/Exception.h"
- namespace Egametang {
- struct ConnectionException: virtual Exception
- {
- };
- typedef boost::error_info<struct TagConnectionErrNO, int> ConnectionErrNO;
- typedef boost::error_info<struct TagConnectionErrStr, std::string> ConnectionErrStr;
- struct SqlNoDataException: virtual Exception
- {
- };
- typedef boost::error_info<struct TagSqlNoDataErrNO, int> SqlNoDataErrNO;
- typedef boost::error_info<struct TagSqlNoDataErrStr, std::string> SqlNoDataErrStr;
- struct MessageNoFeildIsSetException: virtual Exception
- {
- };
- typedef boost::error_info<struct TagMessageNoFeildIsSetErrNO, int> MessageNoFeildIsSetErrNO;
- typedef boost::error_info<struct TagMessageNoFeildIsSetErrStr, std::string> MessageNoFeildIsSetErrStr;
- struct MessageHasNoSuchFeildException: virtual Exception
- {
- };
- typedef boost::error_info<struct TagMessageHasNoSuchFeildErrNO, int> MessageHasNoSuchFeildErrNO;
- typedef boost::error_info<struct TagMessageHasNoSuchFeildErrStr, std::string> MessageHasNoSuchFeildErrStr;
- }
- #endif // ORM_EXCEPTION_H
|