Skip to content

Commit

Permalink
fix invalid symbol MbnParserException to MbnParserError
Browse files Browse the repository at this point in the history
  • Loading branch information
ghassani committed Nov 6, 2017
1 parent 774abb5 commit ea03899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ int main(int argc, char* argv[])

} catch (ArgException &e) {
std::cerr << "Error parsing arguments: " << e.error() << " for argument " << e.argId() << std::endl;
} catch (MbnParserException &e) {
} catch (MbnParserError &e) {
std::cerr << "Error parsing: " << e.what() << std::endl;
}

Expand Down

0 comments on commit ea03899

Please sign in to comment.