1 #macro(showexception $exc)
\r
2 <b>$exc.GetType().Name</b>
\r
12 #if($exc.InnerException)
\r
13 <b>Inner exception:</b>
\r
14 #set($inner = $exc.InnerException)
\r
15 #showexception($inner)
\r
19 <h2>Unexpected error happened</h3>
\r
21 <p> This is the rescue page. See the exception details below </p>
\r
24 #set($exception = $context.LastException)
\r
25 #showexception($exception)
\r