Join script should rule out retired usernames
[bpt/portal.git] / app / exn.mlt
1 <html><head>
2 <title>Hcoop: Exception</title>
3 </head><body>
4
5 <h1><b>Exception</b></h1>
6
7 <% switch Web.getExn () of
8 Fail msg => %>
9 <b>Fail</b>: <% Web.htmlNl msg %>
10 <% | App.C.Sql msg => %>
11 <b>SQL</b>: <% Web.htmlNl msg %>
12 <% | Web.Format s => %>
13 <b>Format</b>: <% Web.htmlNl s %>
14 <% | ex => %>
15 <b>Unknown exception kind.</b> Backtrace:
16 <% foreach s in SMLofNJ.exnHistory ex do %>
17 <li> <% Web.html s %></li>
18 <% end
19 end %>
20
21 </body></html>