diff options
Diffstat (limited to 'libjava/java/io')
-rw-r--r-- | libjava/java/io/FileDescriptor.java | 4 | ||||
-rw-r--r-- | libjava/java/io/FileInputStream.java | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libjava/java/io/FileDescriptor.java b/libjava/java/io/FileDescriptor.java index 0782b0c..d345db2 100644 --- a/libjava/java/io/FileDescriptor.java +++ b/libjava/java/io/FileDescriptor.java @@ -42,7 +42,7 @@ public final class FileDescriptor static final int CUR = 1; // Open a file. MODE is a combination of the above mode flags. - FileDescriptor (String path, int mode) throws IOException + FileDescriptor (String path, int mode) throws FileNotFoundException { fd = open (path, mode); } @@ -52,7 +52,7 @@ public final class FileDescriptor fd = -1; } - native int open (String path, int mode) throws IOException; + native int open (String path, int mode) throws FileNotFoundException; native void write (int b) throws IOException; native void write (byte[] b, int offset, int len) throws IOException, NullPointerException, IndexOutOfBoundsException; diff --git a/libjava/java/io/FileInputStream.java b/libjava/java/io/FileInputStream.java index 4f44dae..04ad6dd 100644 --- a/libjava/java/io/FileInputStream.java +++ b/libjava/java/io/FileInputStream.java @@ -23,7 +23,7 @@ public class FileInputStream extends InputStream /* Contains the file descriptor for referencing the actual file. */ private FileDescriptor fd; - public FileInputStream(String name) throws FileNotFoundException, IOException + public FileInputStream(String name) throws FileNotFoundException { SecurityManager s = System.getSecurityManager(); if (s != null) @@ -31,7 +31,7 @@ public class FileInputStream extends InputStream fd = new FileDescriptor(name, FileDescriptor.READ); } - public FileInputStream(File file) throws FileNotFoundException, IOException + public FileInputStream(File file) throws FileNotFoundException { this(file.getPath()); } |