X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSALOMESDS%2FSALOMESDS_Exception.cxx;h=d5ddd8447d08bce863937b4eeacd7ace86b702fa;hb=2252fa5809de4580de842bf8bfdc36f1644c36ae;hp=5493bbf2d0bf849e9da5923c02fdc51bd14b2756;hpb=09dcd16dea7c5439cdd708de6824237ea4382fb9;p=modules%2Fkernel.git diff --git a/src/SALOMESDS/SALOMESDS_Exception.cxx b/src/SALOMESDS/SALOMESDS_Exception.cxx index 5493bbf2d..d5ddd8447 100644 --- a/src/SALOMESDS/SALOMESDS_Exception.cxx +++ b/src/SALOMESDS/SALOMESDS_Exception.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2014 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -21,12 +21,20 @@ #include "SALOMESDS_Exception.hxx" SALOMESDS::Exception::Exception(const std::string& reason) +{ + this->assign(reason.c_str()); +} + +SALOMESDS::Exception::Exception(const char *reason) +{ + this->assign(reason); +} + +void SALOMESDS::Exception::assign(const char *reason) { SALOME::ExceptionStruct es; es.type=SALOME::INTERNAL_ERROR; - es.text=CORBA::string_dup(reason.c_str()); + es.text=CORBA::string_dup(reason); es.lineNumber=0; (*this).details=es; } - -