Advertisement
Guest User

exception.cpp

a guest
Apr 15th, 2014
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #include "exception.h"
  2. #include <string>
  3.  
  4. // Konstruktor
  5. Exception::Exception(std::string error) {
  6.     _error = error;
  7. }
  8. // zur Ausgabe
  9. std::string Exception::toString() {
  10.     return _error;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement