14#include "arccore/base/String.h"
15#include "arccore/base/NotImplementedException.h"
26NotImplementedException::
27NotImplementedException(
const String& where)
28: Exception(
"NotImplemented",where)
35NotImplementedException::
36NotImplementedException(
const String& where,
const String& message)
37: Exception(
"NotImplemented",where)
45NotImplementedException::
46NotImplementedException(
const TraceInfo& where)
47: Exception(
"NotImplemented",where)
54NotImplementedException::
55NotImplementedException(
const TraceInfo& where,
const String& message)
56: Exception(
"NotImplemented",where)
64NotImplementedException::
65NotImplementedException(
const NotImplementedException& rhs) ARCCORE_NOEXCEPT
67, m_message(rhs.m_message)
74void NotImplementedException::
75explain(std::ostream& m)
const
77 m <<
"function not implemented.";
79 if (!m_message.null())
80 m <<
"Message: " << m_message <<
'\n';
Espace de nom de Arccore.