|
|
|
|
|
by puffybuf
821 days ago
|
|
I did something similar as a student, making my own exception class with std::ostream: throw exceptionC() << "error code: " << t; I often found myself having to format error strings for exceptions, so I thought I could just do it like cout in one line. I know now this is bad for i18n strings. |
|