Advertisement
Guest User

exception.h

a guest
Apr 15th, 2014
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #ifndef _EXCEPTION_H
  2. #define _EXCEPTION_H
  3. #include <string>
  4. class Exception {
  5. private:
  6.     std::string _error;
  7. public:
  8.     Exception(std::string error);
  9.     std::string toString();
  10. };
  11. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement