From 53bc2871e99cbac87d84080d7e0f432875e97250 Mon Sep 17 00:00:00 2001 From: tosmers Date: Fri, 13 Feb 2015 23:41:16 +0000 Subject: [PATCH] [UPDATE] In der Klasse com/arsdigita/cms/ui/ImageUploadComponent.java die FormProcessException in der Zeile 143 umgebaut. Exception an die FormProcessException weitergeleitet. git-svn-id: https://svn.libreccm.org/ccm/trunk@3164 8810af33-2d31-482b-a856-94f89814c4df --- ccm-cms/src/com/arsdigita/cms/ui/ImageUploadComponent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccm-cms/src/com/arsdigita/cms/ui/ImageUploadComponent.java b/ccm-cms/src/com/arsdigita/cms/ui/ImageUploadComponent.java index 04457b6e4..00d092d0e 100644 --- a/ccm-cms/src/com/arsdigita/cms/ui/ImageUploadComponent.java +++ b/ccm-cms/src/com/arsdigita/cms/ui/ImageUploadComponent.java @@ -140,7 +140,7 @@ public class ImageUploadComponent extends Form implements ImageComponent { return image; } catch (IOException ex) { ImagesPane.S_LOG.error("Error loading image from file", ex); - throw new FormProcessException(ex.getMessage()); + throw new FormProcessException(ex); } }