Skip to content
Snippets Groups Projects
Commit 9c1d0878 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

detect invalid param in aconvert

parent 72ed6615
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -244,6 +244,8 @@ int main ( int argc, char * argv[] ) {
treeFromString ( * in, std::cout );
else if ( tree_to_string.getValue ( ) )
treeToString ( * in, std::cout );
else
throw exception::CommonException("Invalid format specified");
 
if ( input.isSet ( ) && ( input.getValue ( ) != "-" ) )
delete in;
......
......@@ -112,7 +112,7 @@ int main(int argc, char** argv) {
 
string::StringToRawComposer::compose(std::cout, string);
} else {
throw exception::CommonException("Invalid input format specified");
throw exception::CommonException("Invalid format specified");
}
 
measurements::end();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment