Stop AppletLoader on download failure, instead of displaying error and continuing download of files.

This commit is contained in:
kappa1 2009-10-12 11:56:46 +00:00
parent 3563faf75b
commit 3abb46dd58

View file

@ -874,7 +874,7 @@ public class AppletLoader extends Applet implements Runnable, AppletStub {
}
else {
// retry attempts exhasted, download failed
fatalErrorOccured("failed to download " + currentFile, null);
throw new Exception("failed to download " + currentFile);
}
}
}