#pragma once namespace AdoLib { class CAdoException { public: CAdoException(); CAdoException(std::string message, int errorCode, std::string description); CAdoException(std::string message, int errorCode, std::string description, std::string source, std::string location); ~CAdoException(); std::string getMessage(); int getErrorCode(); std::string getDescription(); std::string getSource(); std::string getLocation(); std::string toString(); protected: std::string m_message; int m_warnCode; std::string m_description; std::string m_source; // Exception ¹ß»ýÇÑ À§Ä¡ Ç¥½ÃÇϱâ À§ÇØ Ãß°¡ std::string m_Location; }; };