mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
WCM - fix ETHREEOH-569, ETHREEOH-571, ETHREEOH-3123 (after deleting web form)
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@17116 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2005-2007 Alfresco Software Limited.
|
||||
* Copyright (C) 2005-2009 Alfresco Software Limited.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
@@ -22,14 +22,14 @@
|
||||
* http://www.alfresco.com/legal/licensing" */
|
||||
package org.alfresco.web.forms;
|
||||
|
||||
import org.alfresco.service.cmr.repository.NodeRef;
|
||||
import org.alfresco.service.namespace.QName;
|
||||
import java.io.InputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
import java.io.Serializable;
|
||||
import java.util.Map;
|
||||
import org.w3c.dom.Document;
|
||||
|
||||
import org.alfresco.error.AlfrescoRuntimeException;
|
||||
import org.alfresco.service.namespace.QName;
|
||||
import org.xml.sax.SAXException;
|
||||
|
||||
/**
|
||||
@@ -42,25 +42,40 @@ public interface RenderingEngine
|
||||
{
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
public static class RenderingException
|
||||
extends Exception
|
||||
public static class RenderingException extends Exception
|
||||
{
|
||||
|
||||
private static final long serialVersionUID = 6831222399250770060L;
|
||||
|
||||
public RenderingException(final String msg)
|
||||
{
|
||||
super(msg);
|
||||
}
|
||||
|
||||
|
||||
public RenderingException(final Exception cause)
|
||||
{
|
||||
super(cause);
|
||||
}
|
||||
|
||||
|
||||
public RenderingException(final String msg, final Exception cause)
|
||||
{
|
||||
super(msg, cause);
|
||||
}
|
||||
}
|
||||
|
||||
public static class TemplateNotFoundException extends AlfrescoRuntimeException
|
||||
{
|
||||
private static final long serialVersionUID = 3232973289475043471L;
|
||||
|
||||
public TemplateNotFoundException(final String msg)
|
||||
{
|
||||
super(msg);
|
||||
}
|
||||
|
||||
public TemplateNotFoundException(final String msg, final Exception cause)
|
||||
{
|
||||
super(msg, cause);
|
||||
}
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
Reference in New Issue
Block a user