-
Bug
-
Resolution: Duplicate
-
Major
-
None
-
1.1.2
-
None
-
None
When I try to create an Archive from a zip file using
ShrinkWrap.createFromZipFile(WebArchive.class, new File("not-existent-file.zip"));
I get:
IllegalArgumentException: File for import exist: not-existent-file.zip
I took a look at the source code and found that the
org.jboss.shrinkwrap.api.ArchiveFactory.createFromZipFile(Class<T>, File)
contains the statement
if (!(archiveFile.exists())) {
throw new IllegalArgumentException("File for import exist: "
+ archiveFile.getAbsolutePath());
}
I guess the exception message should be: File for import does not exist:
- duplicates
-
SHRINKWRAP-456 Incorrect Error Message if file for import does not exist
-
- Closed
-