Changeset 4389 for trunk/src/core/net
- Timestamp:
- Aug 12, 2008, 12:52:52 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/core/net/sf/basedb/util/JarClassLoader.java
r4323 r4389 36 36 import java.util.jar.Attributes; 37 37 import java.io.File; 38 import java.io.FileNotFoundException;39 38 import java.io.InputStream; 40 39 import java.io.IOException; … … 308 307 if (!file.exists() || !file.isFile()) 309 308 { 310 throw new FileNotFoundException("JAR file not found: " + file); 309 log.warn("File not found: " + file); 310 return; 311 311 } 312 312 JarFile jarFile = new JarFile(file);
Note: See TracChangeset
for help on using the changeset viewer.