PRISMS-PF Manual v3.0-pre
Loading...
Searching...
No Matches
exceptions.h
1#ifndef EXCEPTIONS_H
2#define EXCEPTIONS_H
3
4#include <deal.II/base/exceptions.h>
5
6using namespace dealii;
7
12DeclException1(
13 FeatureNotImplemented,
14 std::string,
15 << "The following feature has yet to be implemented in PRISMS-PF:\n"
16 << arg1
17 << "\nCheck the issues section of PRISMS-PF's github to see if this feature is under "
18 "development. Additionally, please considering provided a patch to PRISMS-PF if you "
19 "feel that feature is worthwhile for yourself and others.");
20
21#endif