We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd366bf commit 24044fbCopy full SHA for 24044fb
1 file changed
src/ifcconvert/IfcConvert.cpp
@@ -128,6 +128,8 @@ int main(int argc, char** argv) {
128
} catch (const boost::program_options::unknown_option& e) {
129
std::cerr << "[Error] Unknown option '" << e.get_option_name() << "'" << std::endl << std::endl;
130
// Usage information will be emitted below
131
+ } catch (...) {
132
+ // Catch other errors such as invalid command line syntax
133
}
134
boost::program_options::notify(vmap);
135
0 commit comments