neptuo / is4wfw

PHP based CMS with multi domain support, virtual file system, library for team-sport fixtures and statistics, and many other features.
http://is4wfw.neptuo.com
Apache License 2.0
1 stars 0 forks source link

Error boundary #449

Closed maraf closed 2 years ago

maraf commented 2 years ago

Evolution of #285.

...
<!-- Error boundary -->
<error:boundary name="main">
    ...
</error:boundary>

<!-- Show error details -->
<web:out error:boundaryFailed="main">
    <error:exceptionList name="main"> <!-- Optional filter -->
        <ui:forEach items="error:exceptionList">
            <pre>
                <web:out text="error:exceptionType" />
                <web:out text="error:exceptionMessage" />
                <web:out text="error:exceptionTrace" />
            </pre>
        </ui:forEach>
    </error:exceptionList>
</web:out>

<!-- Show if boundary passed -->
<web:out error:boundaryPassed="main">
    ...
</web:out>

<!-- Shorthand for development details and standard "500" view -->
<error:exceptionView name="main" />

TODO