14#include "arccore/base/String.h"
15#include "arccore/base/NotSupportedException.h"
26NotSupportedException::
27NotSupportedException(
const String& where)
28: Exception(
"NotSupported",where)
35NotSupportedException::
36NotSupportedException(
const String& where,
const String& message)
37: Exception(
"NotSupported",where)
45NotSupportedException::
46NotSupportedException(
const TraceInfo& where)
47: Exception(
"NotSupported",where)
54NotSupportedException::
55NotSupportedException(
const TraceInfo& where,
const String& message)
56: Exception(
"NotSupported",where)
64NotSupportedException::
65NotSupportedException(
const NotSupportedException& ex) ARCCORE_NOEXCEPT
67, m_message(ex.m_message)
74void NotSupportedException::
75explain(std::ostream& m)
const
77 m <<
"L'opération demandée n'est pas supportée.\n";
79 if (!m_message.null())
80 m <<
"Message: " << m_message <<
'\n';
Espace de nom de Arccore.