14#include "arccore/base/String.h"
15#include "arccore/base/FatalErrorException.h"
27FatalErrorException(
const String& awhere)
37FatalErrorException(
const String& awhere,
const String& amessage)
38: Exception(
"FatalError", awhere, amessage)
47FatalErrorException(
const TraceInfo& awhere)
48: Exception(
"FatalError", awhere)
57FatalErrorException(
const TraceInfo& awhere,
const String& amessage)
58: Exception(
"FatalError", awhere, amessage)
67FatalErrorException(
const FatalErrorException& rhs) ARCCORE_NOEXCEPT
75void FatalErrorException::
76explain(std::ostream& m)
const
78 m <<
"Fatal error occured.\n"
79 <<
"Can not further proceed.\n";
Base class for an exception.
Unicode character string.
-- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature --
void arccoreDebugPause(const char *msg)
Enters pause mode or throws a fatal error.