Package org.hippoecm.hst.core.container
Interface PageErrors
public interface PageErrors
PageErrors
Holds all error information in a page
- Version:
- $Id$
-
Method Summary
Modifier and TypeMethodDescriptionReturns all component exceptions.getComponentExceptions
(HstComponentInfo componentInfo) Returns collection ofHstComponentException
caused by the specific component.Returns collection ofHstComponentInfo
which causes exceptions.boolean
isEmpty()
Returns true if there's no component exceptions.
-
Method Details
-
isEmpty
boolean isEmpty()Returns true if there's no component exceptions.- Returns:
- true if there's no component exceptions.
-
getComponentInfos
Collection<HstComponentInfo> getComponentInfos()Returns collection ofHstComponentInfo
which causes exceptions.- Returns:
- collection of
HstComponentInfo
which causes exceptions.
-
getComponentExceptions
Returns collection ofHstComponentException
caused by the specific component.- Parameters:
componentInfo
-- Returns:
- collection of
HstComponentException
caused by the specific component.
-
getAllComponentExceptions
Collection<HstComponentException> getAllComponentExceptions()Returns all component exceptions.- Returns:
- all component exceptions.
-