]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
added more friendly message when Jimi/JAI is not present
authorChris Bowditch <cbowditch@apache.org>
Tue, 18 May 2004 16:01:42 +0000 (16:01 +0000)
committerChris Bowditch <cbowditch@apache.org>
Tue, 18 May 2004 16:01:42 +0000 (16:01 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197606 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/image/ImageFactory.java

index 75ffff95b3958edb24bae886dc1121fdd521d63e..935662a67d375eecbfc98409e182f11d82f9b833 100644 (file)
@@ -1,12 +1,12 @@
 /*
  * Copyright 1999-2004 The Apache Software Foundation.
- * 
+ *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -14,7 +14,7 @@
  * limitations under the License.
  */
 
-/* $Id$ */
+/* $Id: ImageFactory.java,v 1.7 2004/05/12 23:19:52 gmazza Exp $ */
 
 package org.apache.fop.image;
 
@@ -186,6 +186,9 @@ public class ImageFactory {
             Object[] initArgs = new Object[1];
             initArgs[0] = imgInfo;
             imageInstance = imageConstructor.newInstance(initArgs);
+        } catch (ClassNotFoundException cnfe) {
+            log.error("Class " + imgClassName + " not found. Check that Jimi/JAI is in classpath");
+            return null;
         } catch (java.lang.reflect.InvocationTargetException ex) {
             Throwable t = ex.getTargetException();
             String msg;