We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25c2339 commit 3221f41Copy full SHA for 3221f41
src/util/exception_utils.cpp
@@ -87,6 +87,12 @@ std::string analysis_exceptiont::what() const
87
return reason;
88
}
89
90
+invalid_source_file_exceptiont::invalid_source_file_exceptiont(
91
+ std::string reason)
92
+ : reason(std::move(reason))
93
+{
94
+}
95
+
96
std::string invalid_source_file_exceptiont::what() const
97
{
98
src/util/exception_utils.h
@@ -126,6 +126,7 @@ class analysis_exceptiont : public cprover_exception_baset
126
class invalid_source_file_exceptiont : public cprover_exception_baset
127
128
public:
129
+ explicit invalid_source_file_exceptiont(std::string reason);
130
std::string what() const override;
131
132
private:
0 commit comments