Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
BadExpressionException.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/* BadExpressionException.h (C) 2000-2018 */
9/* */
10/* Exception lorsqu'une expression n'est pas valide. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_EXPR_BADEXPRESSIONEXCEPTION_H
13#define ARCANE_EXPR_BADEXPRESSIONEXCEPTION_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/utils/Exception.h"
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22ARCANE_BEGIN_NAMESPACE
23
24/*---------------------------------------------------------------------------*/
25/*---------------------------------------------------------------------------*/
30: public Exception
31{
32 public:
33
34 BadExpressionException(const String& where);
35 BadExpressionException(const String& where,const String& msg);
36 ~BadExpressionException() ARCANE_NOEXCEPT override {}
37
38 public:
39
40 void explain(std::ostream& m) const override;
41
42 private:
43
44 String m_msg;
45};
46
47/*---------------------------------------------------------------------------*/
48/*---------------------------------------------------------------------------*/
49
50ARCANE_END_NAMESPACE
51
52/*---------------------------------------------------------------------------*/
53/*---------------------------------------------------------------------------*/
54
55#endif
56
Exception lorsqu'une expression n'est pas valide.
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Classe de base d'une exception.
Chaîne de caractères unicode.