summaryrefslogtreecommitdiff
path: root/rt/webrt/Elements/Error
blob: ec2cf511f79fe0ac74db478864e1d954209cbaa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<& /Elements/Header, Code => $Code, Why => $Why &>
<& /Elements/Tabs &>
<& /Elements/TitleBoxStart, title => $Title &>
<%$Why%>
<br>
<font size=-1>
<%$Details%>
</font>
<& /Elements/TitleBoxEnd &>
</body>
</HTML>


<%args>
$Code => undef
$Details => undef
$Title => "RT Error"
$Why => "the calling component did not specify why"
</%args>

<%INIT>
$RT::Logger->error("WebRT: $Why ($Details)");
</%INIT>