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.
2 parents 35ee875 + 3221f41 commit 060ec5dCopy full SHA for 060ec5d
src/util/exception_utils.cpp
@@ -98,6 +98,12 @@ std::string analysis_exceptiont::what() const
98
return reason;
99
}
100
101
+invalid_source_file_exceptiont::invalid_source_file_exceptiont(
102
+ std::string reason)
103
+ : reason(std::move(reason))
104
+{
105
+}
106
+
107
std::string invalid_source_file_exceptiont::what() const
108
{
109
src/util/exception_utils.h
@@ -127,6 +127,7 @@ class analysis_exceptiont : public cprover_exception_baset
127
class invalid_source_file_exceptiont : public cprover_exception_baset
128
129
public:
130
+ explicit invalid_source_file_exceptiont(std::string reason);
131
std::string what() const override;
132
133
private:
0 commit comments