Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
InvalidArgumentException.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/* InvalidArgumentException.h (C) 2000-2016 */
9/* */
10/* Exception lorsqu'un argument est invalide. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_UTILS_INVALIDARGUMENTEXCEPTION_H
13#define ARCANE_UTILS_INVALIDARGUMENTEXCEPTION_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/utils/Exception.h"
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22ARCANE_BEGIN_NAMESPACE
23
24/*---------------------------------------------------------------------------*/
25/*---------------------------------------------------------------------------*/
29class ARCANE_UTILS_EXPORT InvalidArgumentException
30: public Exception
31{
32 public:
33
34 InvalidArgumentException(const TraceInfo& where,const String& arg_name,int arg);
35 InvalidArgumentException(const TraceInfo& where,const String& arg_name,double arg);
36 InvalidArgumentException(const TraceInfo& where,const String& arg_name,const String& arg);
37 InvalidArgumentException(const TraceInfo& where,const String& arg_name,const void* arg);
38
39 InvalidArgumentException(const TraceInfo& where,const String& arg_name,const String& message,int arg);
40 InvalidArgumentException(const TraceInfo& where,const String& arg_name,const String& message,double arg);
41 InvalidArgumentException(const TraceInfo& where,const String& arg_name,const String& message,const String& arg);
42 InvalidArgumentException(const TraceInfo& where,const String& arg_name,const String& message,const void* arg);
43
45
46 ~InvalidArgumentException() ARCANE_NOEXCEPT {}
47
48 public:
49
50 virtual void explain(std::ostream& m) const;
51
52 private:
53
54 String m_arg_name;
55 String m_arg_value;
56 String m_message;
57
58 template<typename U>
59 void _init(const U& arg_value);
60};
61
62/*---------------------------------------------------------------------------*/
63/*---------------------------------------------------------------------------*/
64
65/*---------------------------------------------------------------------------*/
66/*---------------------------------------------------------------------------*/
67
68ARCANE_END_NAMESPACE
69
70/*---------------------------------------------------------------------------*/
71/*---------------------------------------------------------------------------*/
72
73#endif
Exception lorsqu'une erreur fatale est survenue.
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Classe de base d'une exception.
virtual void explain(std::ostream &o) const
Explique la cause de l'exception dans le flot o.
Chaîne de caractères unicode.