X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=common%2FclitkExceptionObject.cxx;h=4b9d62a744595eb0f2beea0f128aed0c159423c5;hb=543b72e23ad001ac2a7743b9beacf48e2d0054ac;hp=8adb8a01465d2005aed73a6988617211d757d3da;hpb=cb9d2e28489c3531d37c241fe7d8a468451c8e67;p=clitk.git diff --git a/common/clitkExceptionObject.cxx b/common/clitkExceptionObject.cxx index 8adb8a0..4b9d62a 100644 --- a/common/clitkExceptionObject.cxx +++ b/common/clitkExceptionObject.cxx @@ -3,7 +3,7 @@ Authors belong to: - University of LYON http://www.universite-lyon.fr/ - - Léon Bérard cancer center http://oncora1.lyon.fnclcc.fr + - Léon Bérard cancer center http://www.centreleonberard.fr - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr This software is distributed WITHOUT ANY WARRANTY; without even @@ -14,7 +14,7 @@ - BSD See included LICENSE.txt file - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html - ======================================================================-====*/ + ===========================================================================**/ // clitk #include "clitkExceptionObject.h" @@ -34,10 +34,12 @@ ExceptionObject(const char *file, unsigned int lineNumber, const char *desc): //-------------------------------------------------------------------- const char* clitk::ExceptionObject::what() const throw() { - ::itk::OStringStream message; + std::ostringstream message; message << "clitk::ERROR in " << m_Filename << " line " << m_LineNumber << " : " << std::endl << "\t" << m_Message; - return message.str().c_str(); + char * m = new char[message.str().length()]; + strcpy(m, message.str().c_str()); + return m; } //--------------------------------------------------------------------