Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
XmlException.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2022 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
4// See the top-level COPYRIGHT file for details.
5// SPDX-License-Identifier: Apache-2.0
6//-----------------------------------------------------------------------------
7/*---------------------------------------------------------------------------*/
8/* XmlException.h (C) 2000-2009 */
9/* */
10/* Exception sur les opérandes des opérations des expressions. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_XMLEXCEPTION_H
13#define ARCANE_XMLEXCEPTION_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/utils/Exception.h"
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22ARCANE_BEGIN_NAMESPACE
23
24/*---------------------------------------------------------------------------*/
25/*---------------------------------------------------------------------------*/
31: public Exception
32{
33 public:
34
35 XmlException(const String& where,const String& msg)
36 : Exception("XmlException",where)
37 {
38 setMessage(msg);
39 }
40 XmlException(const TraceInfo& where,const String& msg)
41 : Exception("XmlException",where)
42 {
43 setMessage(msg);
44 }
45 private:
46};
47
48/*---------------------------------------------------------------------------*/
49/*---------------------------------------------------------------------------*/
50
51ARCANE_END_NAMESPACE
52
53/*---------------------------------------------------------------------------*/
54/*---------------------------------------------------------------------------*/
55
56#endif
57
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Exception liées aux fichiers XML.
Classe de base d'une exception.
Chaîne de caractères unicode.