Can user selfdefine exception overload operator

in Help Center
Hi,
As described in the title , I want to get details of the exception ,like the error file and error line ,I see in the generated .h it has no operator<<, how can I get this ,can you give some suggestions?
Thank you .
Sober
As described in the title , I want to get details of the exception ,like the error file and error line ,I see in the generated .h it has no operator<<, how can I get this ,can you give some suggestions?
Thank you .
Sober
0
Comments
You can provide more specialized ostream inserters for derived exceptions, for example:
That inserter can do whatever you want it to do.
Cheers,
Michi.
thanks,Michi
I'll try.
Cheers,
Sober