Re: [Mingw-w64-public] I am in a in-path

2015-05-27 Thread lh_mouse
0) If the ctor of your exception object (abc::Exception or std::shared_ptr) exits via an exception, the original throw expression that creates the object is not executed. Instead, the exception generated by the ctor is thrown. 1) An exception class that does not inherit from std::exception is ra

Re: [Mingw-w64-public] I am in a in-path

2015-05-27 Thread Riot
Do you mean "I am at an impasse"? On 28 May 2015 00:29, "Hotmail (ArbolOne)" wrote: > I am in a in-path. I wrote a class that handles exceptions, > namespace abc{ > class Exception{...}; // This is my very large Exception class > } > > The way I'd like to use this class is by creating a smart

[Mingw-w64-public] I am in a in-path

2015-05-27 Thread Hotmail (ArbolOne)
I am in a in-path. I wrote a class that handles exceptions, namespace abc{ class Exception{...}; // This is my very large Exception class } The way I'd like to use this class is by creating a smart pointer to it in each newly created class, i.e. namespace abc{ class m_class001{