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
master
tosmers 2015-02-13 23:41:16 +00:00
parent 74f4b10c38
commit 53bc2871e9
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}