mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
- addition of default xml status response template - updates to default html status response template git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5862 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
17 lines
563 B
Plaintext
17 lines
563 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<response>
|
|
<status>
|
|
<code>${status.code}</code>
|
|
<name>${status.codeName}</name>
|
|
<description>${status.codeDescription}</description>
|
|
</status>
|
|
<message>${status.message!""}</message>
|
|
<exception><#if status.exception?exists>${status.exception.class.name}<#if status.exception.message?exists> - ${status.exception.message}</#if></#if></exception>
|
|
<callstack>
|
|
<#if status.exception?exists>
|
|
<#list status.exception.stackTrace as element>
|
|
${element}
|
|
</#list>
|
|
</#if>
|
|
</callstack>
|
|
</response> |