Salome HOME
Updated copyright comment
[modules/kernel.git] / src / Utils / Utils_SALOME_Exception.cxx
1 // Copyright (C) 2007-2024  CEA, EDF, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SALOME Utils : general SALOME's definitions and tools
24 //  File   : Utils_SALOME_Exception.cxx
25 //  Author : Antoine YESSAYAN, EDF
26 //  Module : SALOME
27 //  $Header$
28 //
29 #include "Utils_SALOME_Exception.hxx"
30 #include "utilities.h"
31
32 #ifndef WIN32
33 extern "C"
34 {
35 #endif
36 #include <math.h>
37 #include <stdio.h>
38 #include <string.h>
39 #ifndef WIN32
40 }
41 #endif
42
43 std::string makeText(const char *text, const char *fileName, const unsigned int lineNumber)
44 {
45   constexpr char prefix[] = "Salome Exception";
46   std::ostringstream oss;
47   if (fileName)
48   {
49     oss << prefix << " in " << fileName << "[" << lineNumber << "] : " << text;
50   }
51   else
52   {
53     oss << prefix << " : " << text;
54   }
55   return oss.str();
56 }
57
58 SALOME_Exception::SALOME_Exception(const char *text, const char *fileName, const unsigned int lineNumber) : _text(makeText(text, fileName, lineNumber))
59 {
60 }
61
62 SALOME_Exception::~SALOME_Exception() noexcept
63 {
64 }
65
66 std::ostream &operator<<(std::ostream &os, const SALOME_Exception &ex)
67 {
68   os << ex._text;
69   return os;
70 }
71
72 const char *SALOME_Exception::what(void) const noexcept
73 {
74   return _text.c_str();
75 }