From 3667531f909954c57fe64a1f5d51fef85b2d1bf5 Mon Sep 17 00:00:00 2001 From: "nor..67" Date: Thu, 25 Aug 2011 19:06:26 +0000 Subject: [PATCH] SDK: - catch all file copy exceptions on model import git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8097 75d07b2b-3a1a-0410-a2c5-0572b91ccdca --- .../src/com/jme3/gde/modelimporter/ImportModel.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/jme3-model-importer/src/com/jme3/gde/modelimporter/ImportModel.java b/sdk/jme3-model-importer/src/com/jme3/gde/modelimporter/ImportModel.java index f6fe19c8e..3518c3dbd 100644 --- a/sdk/jme3-model-importer/src/com/jme3/gde/modelimporter/ImportModel.java +++ b/sdk/jme3-model-importer/src/com/jme3/gde/modelimporter/ImportModel.java @@ -94,7 +94,7 @@ public final class ImportModel implements ActionListener { if (!(assetKey instanceof TextureKey)) { deleteList.add(fileObj); } - } catch (IOException ex) { + } catch (Exception ex) { Exceptions.printStackTrace(ex); } }