16#ifndef dealii_exceptions_h
17#define dealii_exceptions_h
26#ifdef DEAL_II_WITH_CUDA
27# include <cusolverSp.h>
83 const char *exc_name);
90 what() const noexcept override;
156#ifdef DEAL_II_HAVE_GLIBC_STACKTRACE
195# define DeclException0(Exception0) \
196 class Exception0 : public ::ExceptionBase \
219# define DeclExceptionMsg(Exception, defaulttext) \
220 class Exception : public ::ExceptionBase \
223 Exception(const std::string &msg = defaulttext) \
226 virtual ~Exception() noexcept \
229 print_info(std::ostream &out) const override \
231 out << " " << arg << std::endl; \
235 const std::string arg; \
255# define DeclException1(Exception1, type1, outsequence) \
256 class Exception1 : public ::ExceptionBase \
259 Exception1(type1 const &a1) \
262 virtual ~Exception1() noexcept \
265 print_info(std::ostream &out) const override \
267 out << " " outsequence << std::endl; \
292# define DeclException2(Exception2, type1, type2, outsequence) \
293 class Exception2 : public ::ExceptionBase \
296 Exception2(type1 const &a1, type2 const &a2) \
300 virtual ~Exception2() noexcept \
303 print_info(std::ostream &out) const override \
305 out << " " outsequence << std::endl; \
331# define DeclException3(Exception3, type1, type2, type3, outsequence) \
332 class Exception3 : public ::ExceptionBase \
335 Exception3(type1 const &a1, type2 const &a2, type3 const &a3) \
340 virtual ~Exception3() noexcept \
343 print_info(std::ostream &out) const override \
345 out << " " outsequence << std::endl; \
372# define DeclException4(Exception4, type1, type2, type3, type4, outsequence) \
373 class Exception4 : public ::ExceptionBase \
376 Exception4(type1 const &a1, \
385 virtual ~Exception4() noexcept \
388 print_info(std::ostream &out) const override \
390 out << " " outsequence << std::endl; \
418# define DeclException5( \
419 Exception5, type1, type2, type3, type4, type5, outsequence) \
420 class Exception5 : public ::ExceptionBase \
423 Exception5(type1 const &a1, \
434 virtual ~Exception5() noexcept \
437 print_info(std::ostream &out) const override \
439 out << " " outsequence << std::endl; \
470# define DeclException0(Exception0) \
472 static ::ExceptionBase &Exception0()
493# define DeclExceptionMsg(Exception, defaulttext) \
496 static ::ExceptionBase &Exception()
515# define DeclException1(Exception1, type1, outsequence) \
518 static ::ExceptionBase &Exception1(type1 arg1)
538# define DeclException2(Exception2, type1, type2, outsequence) \
541 static ::ExceptionBase &Exception2(type1 arg1, type2 arg2)
561# define DeclException3(Exception3, type1, type2, type3, outsequence) \
564 static ::ExceptionBase &Exception3(type1 arg1, type2 arg2, type3 arg3)
584# define DeclException4(Exception4, type1, type2, type3, type4, outsequence) \
587 static ::ExceptionBase &Exception4(type1 arg1, \
610# define DeclException5( \
611 Exception5, type1, type2, type3, type4, type5, outsequence) \
614 static ::ExceptionBase &Exception5( \
615 type1 arg1, type2 arg2, type3 arg3, type4 arg4, type5 arg5)
642 "A piece of code is attempting a division by zero. This is "
643 "likely going to lead to results that make no sense.");
657 std::complex<double>,
658 <<
"In a significant number of places, deal.II checks that some intermediate "
659 <<
"value is a finite number (as opposed to plus or minus infinity, or "
660 <<
"NaN/Not a Number). In the current function, we encountered a number "
661 <<
"that is not finite (its value is " << arg1 <<
" and therefore "
662 <<
"violates the current assertion).\n\n"
663 <<
"This may be due to the fact that some operation in this function "
664 <<
"created such a value, or because one of the arguments you passed "
665 <<
"to the function already had this value from some previous "
666 <<
"operation. In the latter case, this function only triggered the "
667 <<
"error but may not actually be responsible for the computation of "
668 <<
"the number that is not finite.\n\n"
669 <<
"There are two common cases where this situation happens. First, your "
670 <<
"code (or something in deal.II) divides by zero in a place where this "
671 <<
"should not happen. Or, you are trying to solve a linear system "
672 <<
"with an unsuitable solver (such as an indefinite or non-symmetric "
673 <<
"linear system using a Conjugate Gradient solver); such attempts "
674 <<
"oftentimes yield an operation somewhere that tries to divide "
675 <<
"by zero or take the square root of a negative value.\n\n"
676 <<
"In any case, when trying to find the source of the error, "
677 <<
"recall that the location where you are getting this error is "
678 <<
"simply the first place in the program where there is a check "
679 <<
"that a number (e.g., an element of a solution vector) is in fact "
680 <<
"finite, but that the actual error that computed the number "
681 <<
"may have happened far earlier. To find this location, you "
682 <<
"may want to add checks for finiteness in places of your "
683 <<
"program visited before the place where this error is produced. "
684 <<
"One way to check for finiteness is to use the 'AssertIsFinite' "
692 "Your program tried to allocate some memory but this "
693 "allocation failed. Typically, this either means that "
694 "you simply do not have enough memory in your system, "
695 "or that you are (erroneously) trying to allocate "
696 "a chunk of memory that is simply beyond all reasonable "
697 "size, for example because the size of the object has "
698 "been computed incorrectly."
700 "In the current case, the request was for "
701 << arg1 <<
" bytes.");
709 <<
"Destroying memory handler while " << arg1
710 <<
" objects are still allocated.");
716 "An input/output error has occurred. There are a number of "
717 "reasons why this may be happening, both for reading and "
718 "writing operations."
720 "If this happens during an operation that tries to read "
721 "data: First, you may be "
722 "trying to read from a file that doesn't exist or that is "
723 "not readable given its file permissions. Second, deal.II "
724 "uses this error at times if it tries to "
725 "read information from a file but where the information "
726 "in the file does not correspond to the expected format. "
727 "An example would be a truncated file, or a mesh file "
728 "that contains not only sections that describe the "
729 "vertices and cells, but also sections for additional "
730 "data that deal.II does not understand."
732 "If this happens during an operation that tries to write "
733 "data: you may be trying to write to a file to which file "
734 "or directory permissions do not allow you to write. A "
735 "typical example is where you specify an output file in "
736 "a directory that does not exist.");
746 <<
"Could not open file " << arg1
749 "If this happens during an operation that tries to read "
751 "trying to read from a file that doesn't exist or that is "
752 "not readable given its file permissions."
754 "If this happens during an operation that tries to write "
755 "data: you may be trying to write to a file to which file "
756 "or directory permissions do not allow you to write. A "
757 "typical example is where you specify an output file in "
758 "a directory that does not exist.");
769 "You are trying to use functionality in deal.II that is "
770 "currently not implemented. In many cases, this indicates "
771 "that there simply didn't appear much of a need for it, or "
772 "that the author of the original code did not have the "
773 "time to implement a particular case. If you hit this "
774 "exception, it is therefore worth the time to look into "
775 "the code to find out whether you may be able to "
776 "implement the missing functionality. If you do, please "
777 "consider providing a patch to the deal.II development "
778 "sources (see the deal.II website on how to contribute).");
801 "This exception -- which is used in many places in the "
802 "library -- usually indicates that some condition which "
803 "the author of the code thought must be satisfied at a "
804 "certain point in an algorithm, is not fulfilled. An "
805 "example would be that the first part of an algorithm "
806 "sorts elements of an array in ascending order, and "
807 "a second part of the algorithm later encounters an "
808 "element that is not larger than the previous one."
810 "There is usually not very much you can do if you "
811 "encounter such an exception since it indicates an error "
812 "in deal.II, not in your own program. Try to come up with "
813 "the smallest possible program that still demonstrates "
814 "the error and contact the deal.II mailing lists with it "
825 "You (or a place in the library) are trying to call a "
826 "function that is declared as a virtual function in a "
827 "base class but that has not been overridden in your "
830 "This exception happens in cases where the base class "
831 "cannot provide a useful default implementation for "
832 "the virtual function, but where we also do not want "
833 "to mark the function as abstract (i.e., with '=0' at the end) "
834 "because the function is not essential to the class in many "
835 "contexts. In cases like this, the base class provides "
836 "a dummy implementation that makes the compiler happy, but "
837 "that then throws the current exception."
839 "A concrete example would be the 'Function' class. It declares "
840 "the existence of 'value()' and 'gradient()' member functions, "
841 "and both are marked as 'virtual'. Derived classes have to "
842 "override these functions for the values and gradients of a "
843 "particular function. On the other hand, not every function "
844 "has a gradient, and even for those that do, not every program "
845 "actually needs to evaluate it. Consequently, there is no "
846 "*requirement* that a derived class actually override the "
847 "'gradient()' function (as there would be had it been marked "
848 "as abstract). But, since the base class cannot know how to "
849 "compute the gradient, if a derived class does not override "
850 "the 'gradient()' function and it is called anyway, then the "
851 "default implementation in the base class will simply throw "
854 "The exception you see is what happens in cases such as the "
855 "one just illustrated. To fix the problem, you need to "
856 "investigate whether the function being called should indeed have "
857 "been called; if the answer is 'yes', then you need to "
858 "implement the missing override in your class.");
878 <<
"You are trying to execute functionality that is "
879 <<
"impossible in " << arg1
880 <<
"d or simply does not make any sense.");
892 <<
"You are trying to execute functionality that is "
893 <<
"impossible in dimensions <" << arg1 <<
"," << arg2
894 <<
"> or simply does not make any sense.");
901 "In a check in the code, deal.II encountered a zero in "
902 "a place where this does not make sense. See the condition "
903 "that was being checked and that is printed further up "
904 "in the error message to get more information on what "
905 "the erroneous zero corresponds to.");
912 "The object you are trying to access is empty but it makes "
913 "no sense to attempt the operation you are trying on an "
926 <<
"Dimension " << arg1 <<
" not equal to " << arg2 <<
".");
936 <<
"Dimension " << arg1 <<
" neither equal to " << arg2
937 <<
" nor to " << arg3 <<
".");
956 <<
"Index " << arg1 <<
" is not in the half-open range [" << arg2 <<
","
959 " In the current case, this half-open range is in fact empty, "
960 "suggesting that you are accessing an element of an empty "
961 "collection such as a vector that has not been set to the "
980 template <
typename T>
986 <<
"Index " << arg1 <<
" is not in the half-open range [" << arg2 <<
","
989 " In the current case, this half-open range is in fact empty, "
990 "suggesting that you are accessing an element of an empty "
991 "collection such as a vector that has not been set to the "
1001 <<
"Number " << arg1 <<
" must be larger than or equal "
1007 template <
typename T>
1011 <<
"Number " << arg1 <<
" must be larger than or equal "
1021 <<
"Division " << arg1 <<
" by " << arg2
1022 <<
" has remainder different from zero.");
1033 "You are trying to use an iterator, but the iterator is "
1034 "in an invalid state. This may indicate that the iterator "
1035 "object has not been initialized, or that it has been "
1036 "moved beyond the end of the range of valid elements.");
1043 "You are trying to use an iterator, but the iterator is "
1044 "pointing past the end of the range of valid elements. "
1045 "It is not valid to dereference the iterator in this "
1067 "You are trying an operation on a vector that is only "
1068 "allowed if the vector has no ghost elements, but the "
1069 "vector you are operating on does have ghost elements. "
1070 "Specifically, vectors with ghost elements are read-only "
1071 "and cannot appear in operations that write into these "
1074 "See the glossary entry on 'Ghosted vectors' for more "
1085 "You are trying an operation of the form 'vector = C', "
1086 "'matrix = C', or 'tensor = C' with a nonzero scalar value "
1087 "'C'. However, such assignments are only allowed if the "
1088 "C is zero, since the semantics for assigning any other "
1089 "value are not clear. For example: one could interpret "
1090 "assigning a matrix a value of 1 to mean the matrix has a "
1091 "norm of 1, the matrix is the identity matrix, or the "
1092 "matrix contains only 1s. Similar problems exist with "
1093 "vectors and tensors. Hence, to avoid this ambiguity, such "
1094 "assignments are not permitted.");
1101 "You are attempting to use functionality that is only available "
1102 "if deal.II was configured to use LAPACK, but cmake did not "
1103 "find a valid LAPACK library.");
1110 "You are attempting to use functionality that is only available "
1111 "if deal.II was configured to use MPI.");
1118 "You are attempting to use functionality that is only available "
1119 "if deal.II was configured to use the function parser which "
1120 "relies on the muparser library, but cmake did not "
1121 "find a valid muparser library on your system and also did "
1122 "not choose the one that comes bundled with deal.II.");
1129 "You are attempting to use functionality that is only available "
1130 "if deal.II was configured to use Assimp, but cmake did not "
1131 "find a valid Assimp library.");
1133#ifdef DEAL_II_WITH_CUDA
1146 <<
"There was an error in a cuSPARSE function: " << arg1);
1155 "You are attempting to use functionality that is only available if deal.II "
1156 "was configured to use Trilinos' SEACAS library (which provides ExodusII), "
1157 "but cmake did not find a valid SEACAS library.");
1159#ifdef DEAL_II_WITH_MPI
1187 print_info(std::ostream &out)
const override;
1195#ifdef DEAL_II_TRILINOS_WITH_SEACAS
1212 ExcExodusII(
const int error_code);
1218 print_info(std::ostream &out)
const override;
1223 const int error_code;
1350 template <
class ExceptionType>
1355 const char * function,
1357 const char * exc_name,
1360 e.set_fields(file, line, function, cond, exc_name);
1366 if (::deal_II_exceptions::internals::
1398 template <
class ExceptionType>
1402 const char * function,
1404 const char * exc_name,
1405 ExceptionType
e)
noexcept
1407 static_assert(std::is_base_of<ExceptionBase, ExceptionType>::value,
1408 "The provided exception must inherit from ExceptionBase.");
1410 e.set_fields(file, line, function, cond, exc_name);
1415#ifdef DEAL_II_WITH_CUDA
1464# ifdef DEAL_II_HAVE_BUILTIN_EXPECT
1465# define Assert(cond, exc) \
1467 if (__builtin_expect(!(cond), false)) \
1468 ::deal_II_exceptions::internals::issue_error_noreturn( \
1469 ::deal_II_exceptions::internals:: \
1470 abort_or_throw_on_exception, \
1473 __PRETTY_FUNCTION__, \
1479# define Assert(cond, exc) \
1482 ::deal_II_exceptions::internals::issue_error_noreturn( \
1483 ::deal_II_exceptions::internals:: \
1484 abort_or_throw_on_exception, \
1487 __PRETTY_FUNCTION__, \
1494# define Assert(cond, exc) \
1527# ifdef DEAL_II_HAVE_BUILTIN_EXPECT
1528# define AssertNothrow(cond, exc) \
1530 if (__builtin_expect(!(cond), false)) \
1531 ::deal_II_exceptions::internals::issue_error_nothrow( \
1532 __FILE__, __LINE__, __PRETTY_FUNCTION__, #cond, #exc, exc); \
1535# define AssertNothrow(cond, exc) \
1538 ::deal_II_exceptions::internals::issue_error_nothrow( \
1539 __FILE__, __LINE__, __PRETTY_FUNCTION__, #cond, #exc, exc); \
1543# define AssertNothrow(cond, exc) \
1574#ifdef DEAL_II_HAVE_BUILTIN_EXPECT
1575# define AssertThrow(cond, exc) \
1577 if (__builtin_expect(!(cond), false)) \
1578 ::deal_II_exceptions::internals::issue_error_noreturn( \
1579 ::deal_II_exceptions::internals::throw_on_exception, \
1582 __PRETTY_FUNCTION__, \
1588# define AssertThrow(cond, exc) \
1591 ::deal_II_exceptions::internals::issue_error_noreturn( \
1592 ::deal_II_exceptions::internals::throw_on_exception, \
1595 __PRETTY_FUNCTION__, \
1622#define AssertDimension(dim1, dim2) \
1623 Assert(static_cast<typename ::internal::argument_type<void( \
1624 typename std::common_type<decltype(dim1), \
1625 decltype(dim2)>::type)>::type>(dim1) == \
1626 static_cast<typename ::internal::argument_type<void( \
1627 typename std::common_type<decltype(dim1), \
1628 decltype(dim2)>::type)>::type>(dim2), \
1629 ::ExcDimensionMismatch((dim1), (dim2)))
1649#define AssertVectorVectorDimension(VEC, DIM1, DIM2) \
1650 AssertDimension(VEC.size(), DIM1); \
1651 for (const auto &subvector : VEC) \
1654 AssertDimension(subvector.size(), DIM2); \
1662 template <
typename T>
1664 template <
typename T,
typename U>
1690#define AssertIndexRange(index, range) \
1692 static_cast<typename ::internal::argument_type<void( \
1693 typename std::common_type<decltype(index), decltype(range)>::type)>:: \
1695 static_cast<typename ::internal::argument_type<void( \
1696 typename std::common_type<decltype(index), decltype(range)>::type)>:: \
1698 ExcIndexRangeType<typename ::internal::argument_type<void( \
1699 typename std::common_type<decltype(index), decltype(range)>::type)>:: \
1700 type>((index), 0, (range)))
1721#define AssertIsFinite(number) \
1722 Assert(::numbers::is_finite(number), \
1723 ::ExcNumberNotFinite(std::complex<double>(number)))
1725#ifdef DEAL_II_WITH_MPI
1746# define AssertThrowMPI(error_code) \
1747 AssertThrow(error_code == MPI_SUCCESS, ::ExcMPI(error_code))
1749# define AssertThrowMPI(error_code) \
1753#ifdef DEAL_II_WITH_CUDA
1772# define AssertCuda(error_code) \
1773 Assert(error_code == cudaSuccess, \
1774 ::ExcCudaError(cudaGetErrorString(error_code)))
1776# define AssertCuda(error_code) \
1778 (void)(error_code); \
1799# define AssertNothrowCuda(error_code) \
1800 AssertNothrow(error_code == cudaSuccess, \
1801 ::ExcCudaError(cudaGetErrorString(error_code)))
1803# define AssertNothrowCuda(error_code) \
1805 (void)(error_code); \
1827# define AssertCudaKernel() \
1829 cudaError_t local_error_code = cudaPeekAtLastError(); \
1830 AssertCuda(local_error_code); \
1831 local_error_code = cudaDeviceSynchronize(); \
1832 AssertCuda(local_error_code) \
1835# define AssertCudaKernel() \
1857# define AssertCusparse(error_code) \
1859 error_code == CUSPARSE_STATUS_SUCCESS, \
1861 deal_II_exceptions::internals::get_cusparse_error_string( \
1864# define AssertCusparse(error_code) \
1866 (void)(error_code); \
1887# define AssertNothrowCusparse(error_code) \
1889 error_code == CUSPARSE_STATUS_SUCCESS, \
1891 deal_II_exceptions::internals::get_cusparse_error_string( \
1894# define AssertNothrowCusparse(error_code) \
1896 (void)(error_code); \
1918# define AssertCusolver(error_code) \
1920 error_code == CUSOLVER_STATUS_SUCCESS, \
1922 deal_II_exceptions::internals::get_cusolver_error_string( \
1925# define AssertCusolver(error_code) \
1927 (void)(error_code); \
1933#ifdef DEAL_II_TRILINOS_WITH_SEACAS
1951# define AssertThrowExodusII(error_code) \
1952 AssertThrow(error_code == 0, ExcExodusII(error_code));
void generate_message() const
void print_stack_trace(std::ostream &out) const
virtual ~ExceptionBase() noexcept override
const char * get_exc_name() const
void set_fields(const char *file, const int line, const char *function, const char *cond, const char *exc_name)
virtual void print_info(std::ostream &out) const
virtual const char * what() const noexcept override
void print_exc_data(std::ostream &out) const
void * raw_stacktrace[25]
ExceptionBase operator=(const ExceptionBase &)=delete
virtual void print_info(std::ostream &out) const override
ExcMPI(const int error_code)
#define DEAL_II_NAMESPACE_OPEN
#define DEAL_II_NAMESPACE_CLOSE
static ::ExceptionBase & ExcIndexRangeType(T arg1, T arg2, T arg3)
static ::ExceptionBase & ExcImpossibleInDimSpacedim(int arg1, int arg2)
#define DeclException0(Exception0)
static ::ExceptionBase & ExcInvalidIterator()
static ::ExceptionBase & ExcOutOfMemory(std::size_t arg1)
static ::ExceptionBase & ExcIO()
static ::ExceptionBase & ExcGhostsPresent()
static ::ExceptionBase & ExcFileNotOpen(std::string arg1)
static ::ExceptionBase & ExcZero()
static ::ExceptionBase & ExcNeedsAssimp()
static ::ExceptionBase & ExcNeedsFunctionparser()
static ::ExceptionBase & ExcNotMultiple(int arg1, int arg2)
static ::ExceptionBase & ExcNotImplemented()
static ::ExceptionBase & ExcNeedsMPI()
static ::ExceptionBase & ExcEmptyObject()
static ::ExceptionBase & ExcIndexRange(int arg1, int arg2, int arg3)
static ::ExceptionBase & ExcScalarAssignmentOnlyForZeroValue()
static ::ExceptionBase & ExcMemoryLeak(int arg1)
static ::ExceptionBase & ExcLowerRangeType(T arg1, T arg2)
static ::ExceptionBase & ExcImpossibleInDim(int arg1)
static ::ExceptionBase & ExcDimensionMismatch2(int arg1, int arg2, int arg3)
static ::ExceptionBase & ExcCusparseError(std::string arg1)
static ::ExceptionBase & ExcIteratorPastEnd()
static ::ExceptionBase & ExcNeedsExodusII()
static ::ExceptionBase & ExcCudaError(const char *arg1)
#define DeclException2(Exception2, type1, type2, outsequence)
static ::ExceptionBase & ExcLowerRange(int arg1, int arg2)
static ::ExceptionBase & ExcNumberNotFinite(std::complex< double > arg1)
static ::ExceptionBase & ExcPureFunctionCalled()
#define DeclExceptionMsg(Exception, defaulttext)
static ::ExceptionBase & ExcInternalError()
static ::ExceptionBase & ExcDivideByZero()
static ::ExceptionBase & ExcNeedsLAPACK()
#define DeclException3(Exception3, type1, type2, type3, outsequence)
static ::ExceptionBase & ExcDimensionMismatch(std::size_t arg1, std::size_t arg2)
static ::ExceptionBase & ExcNotInitialized()
static ::ExceptionBase & ExcInvalidState()
#define DeclException1(Exception1, type1, outsequence)
static ::ExceptionBase & ExcMessage(std::string arg1)
SymmetricTensor< 2, dim, Number > e(const Tensor< 2, dim, Number > &F)
std::string get_cusolver_error_string(const cusolverStatus_t error_code)
std::string get_cusparse_error_string(const cusparseStatus_t error_code)
void issue_error_noreturn(ExceptionHandling handling, const char *file, int line, const char *function, const char *cond, const char *exc_name, ExceptionType e)
@ abort_or_throw_on_exception
void abort(const ExceptionBase &exc) noexcept
void do_issue_error_nothrow(const ExceptionBase &e) noexcept
bool allow_abort_on_exception
void issue_error_nothrow(const char *file, int line, const char *function, const char *cond, const char *exc_name, ExceptionType e) noexcept
void disable_abort_on_exception()
void set_additional_assert_output(const char *const p)
void suppress_stacktrace_in_exceptions()