Package com.day.cq.polling.importer

Examples of com.day.cq.polling.importer.ImportException


                        stream = new FileInputStream(file);
                        JcrUtils.putFile(targetParent, targetName, mimeType, stream);
                        node.getSession().save();
                    } catch (RepositoryException e) {
                        throw new ImportException("Unable to import from file '" + dataSource + "' to '"
                                + target.getPath() + "'", e);
                    } catch (FileNotFoundException e) {
                        throw new ImportException("Unexpected FileNotFoundException while importing", e);
                    } finally {
                        if (stream != null) {
                            IOUtils.closeQuietly(stream);
                        }
                    }
View Full Code Here

TOP

Related Classes of com.day.cq.polling.importer.ImportException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.