mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
classpath progress
This commit is contained in:
11
classpath/java/io/FileNotFoundException.java
Normal file
11
classpath/java/io/FileNotFoundException.java
Normal file
@ -0,0 +1,11 @@
|
||||
package java.io;
|
||||
|
||||
public class FileNotFoundException extends IOException {
|
||||
public FileNotFoundException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
public FileNotFoundException() {
|
||||
this(null);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user