Skip to content

Commit

Permalink
Merge pull request #15 from mtbc/FS-error
Browse files Browse the repository at this point in the history
Improve message formatting for exception.
  • Loading branch information
joshmoore authored Nov 11, 2019
2 parents 53849c0 + f03274b commit 1e5640c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/ome/io/nio/AbstractFileSystemService.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public AbstractFileSystemService(String path, boolean isReadOnlyRepo) {
if (!rootDirectory.isDirectory() || !rootDirectory.canRead()
|| !(isReadOnlyRepo || rootDirectory.canWrite())) {
throw new IllegalArgumentException(
"Invalid directory specified for file system service."
"Invalid directory specified for file system service: "
+ rootDirectory);
}

Expand Down

0 comments on commit 1e5640c

Please sign in to comment.