Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #include "Exception.h"
  2. #include <string.h>
  3.  
  4.  
  5. ostream& operator <<(ostream& os, Exception &e){
  6. os << endl << "---------------" << endl << "Line " << e.Line << endl << "File " << e.File << endl << "Func " << e.Function << endl << e.Desc << endl << "---------------" << endl;
  7. return os;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement