Skip to content

Commit

Permalink
Improve error message
Browse files Browse the repository at this point in the history
  • Loading branch information
flanglet committed Nov 25, 2024
1 parent 1f0f433 commit 658bf43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ public Integer call()

if (files.isEmpty())
{
System.err.println("Cannot access input file '"+this.inputName+"'");
System.err.println("Cannot find any file to compress");
return Error.ERR_OPEN_FILE;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ public Integer call()

if (files.isEmpty())
{
System.err.println("Cannot open input file '"+this.inputName+"'");
System.err.println("Cannot find any file to decompress");
return Error.ERR_OPEN_FILE;
}

Expand Down

0 comments on commit 658bf43

Please sign in to comment.