We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abccaf2 commit 2f91d11Copy full SHA for 2f91d11
3-0-java-core/src/main/java/com/bobocode/file_reader/FileReaders.java
@@ -1,7 +1,5 @@
1
package com.bobocode.file_reader;
2
3
-import com.bobocode.util.ExerciseNotCompletedException;
4
-
5
import java.io.IOException;
6
import java.net.URISyntaxException;
7
import java.net.URL;
@@ -37,7 +35,7 @@ private static Path createPathFromFileName(String fileName) {
37
35
try {
38
36
return Paths.get(fileUrl.toURI());
39
} catch (URISyntaxException e) {
40
- throw new FileReaderException("Invalid file URL",e);
+ throw new FileReaderException("Invalid file URL", e);
41
}
42
43
0 commit comments