We need to report missing files thisaway.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@2607 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
samskivert
2009-08-14 22:28:29 +00:00
parent a2d5413da9
commit 7945e1e9b5
@@ -20,6 +20,7 @@
package com.samskivert.velocity; package com.samskivert.velocity;
import java.io.FileNotFoundException;
import java.io.IOException; import java.io.IOException;
import java.io.InputStream; import java.io.InputStream;
import java.net.URL; import java.net.URL;
@@ -82,6 +83,9 @@ public class ClasspathResourceLoader extends ResourceLoader
throws IOException throws IOException
{ {
URL rsrc = loader.getResource(name); URL rsrc = loader.getResource(name);
if (rsrc == null) {
throw new FileNotFoundException(name);
}
URLConnection uconn = rsrc.openConnection(); URLConnection uconn = rsrc.openConnection();
// we have to disable caching otherwise once a resource is loaded from a jar file we will // we have to disable caching otherwise once a resource is loaded from a jar file we will
// never get a new version of that resource even if the jar file is replaced on disk and a // never get a new version of that resource even if the jar file is replaced on disk and a