Преглед изворни кода

Improve EmptyFileException when the file actually does not exist at all

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1885227 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_5_0_0
Dominik Stadler пре 3 година
родитељ
комит
ce701485d8
1 измењених фајлова са 3 додато и 1 уклоњено
  1. 3
    1
      src/java/org/apache/poi/EmptyFileException.java

+ 3
- 1
src/java/org/apache/poi/EmptyFileException.java Прегледај датотеку

@@ -29,6 +29,8 @@ public class EmptyFileException extends IllegalArgumentException {
}

public EmptyFileException(File file) {
super("The supplied file '" + file.getAbsolutePath() + "' was empty (zero bytes long)");
super(file.exists() ?
"The supplied file '" + file.getAbsolutePath() + "' was empty (zero bytes long)" :
"The file '" + file.getAbsolutePath() + "' does not exist");
}
}

Loading…
Откажи
Сачувај