launcher/http/src/main/java/org/apidesign/bck2brwsr/launcher/Bck2BrwsrLauncher.java
branchclosure
changeset 1505 706b66d8c481
parent 1504 d058edd87424
child 1513 ba912ef24b27
     1.1 --- a/launcher/http/src/main/java/org/apidesign/bck2brwsr/launcher/Bck2BrwsrLauncher.java	Tue Apr 29 14:28:52 2014 +0200
     1.2 +++ b/launcher/http/src/main/java/org/apidesign/bck2brwsr/launcher/Bck2BrwsrLauncher.java	Tue Apr 29 14:59:40 2014 +0200
     1.3 @@ -42,13 +42,8 @@
     1.4          return CompileCP.compileJAR(jar);
     1.5      }
     1.6  
     1.7 -    @Override String compileFromClassPath(URL f, Res loader) {
     1.8 -        try {
     1.9 -            return CompileCP.compileFromClassPath(f, loader);
    1.10 -        } catch (Exception ex) {
    1.11 -            ex.printStackTrace();
    1.12 -            return null;
    1.13 -        }
    1.14 +    @Override String compileFromClassPath(URL f, Res loader) throws IOException {
    1.15 +        return CompileCP.compileFromClassPath(f, loader);
    1.16      }
    1.17      
    1.18      @Override