Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
BadCastException.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/* BadCastException.h (C) 2000-2014 */
9/* */
10/* Exception lorsqu'une conversion est invalide. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_UTILS_BADCASTEXCEPTION_H
13#define ARCANE_UTILS_BADCASTEXCEPTION_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/utils/Exception.h"
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22ARCANE_BEGIN_NAMESPACE
23
24/*---------------------------------------------------------------------------*/
25/*---------------------------------------------------------------------------*/
30class ARCANE_UTILS_EXPORT BadCastException
31: public Exception
32{
33 public:
34
35 explicit BadCastException(const String& where);
36 BadCastException(const String& where,const String& message);
37 explicit BadCastException(const TraceInfo& where);
38 BadCastException(const TraceInfo& where,const String& message);
39 BadCastException(const BadCastException& rhs) ARCANE_NOEXCEPT : Exception(rhs){}
40 ~BadCastException() ARCANE_NOEXCEPT {}
41
42 private:
43};
44
45/*---------------------------------------------------------------------------*/
46/*---------------------------------------------------------------------------*/
47
48/*---------------------------------------------------------------------------*/
49/*---------------------------------------------------------------------------*/
50
51ARCANE_END_NAMESPACE
52
53/*---------------------------------------------------------------------------*/
54/*---------------------------------------------------------------------------*/
55
56#endif
57
Exception lorsqu'une conversion d'un type vers un autre est invalide.
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.