14#include "arcane/utils/ArcanePrecomp.h"
16#include "arcane/utils/Iostream.h"
17#include "arcane/utils/ParallelFatalErrorException.h"
27ParallelFatalErrorException::
28ParallelFatalErrorException(
const String& where)
29: Exception(
"ParallelFatalError",where)
36ParallelFatalErrorException::
37ParallelFatalErrorException(
const TraceInfo& where)
38: Exception(
"ParallelFatalError",where)
45ParallelFatalErrorException::
46ParallelFatalErrorException(
const String& where,
const String& message)
47: Exception(
"ParallelFatalError",where,message)
54ParallelFatalErrorException::
55ParallelFatalErrorException(
const TraceInfo& where,
const String& message)
56: Exception(
"ParallelFatalError",where,message)
63void ParallelFatalErrorException::
64explain(std::ostream& m)
const
66 m <<
"Fatal error occured.\n"
67 <<
"Can not further proceed.\n";