$exc.GetType().Name
Message:
$exc.Message
#if($exc.StackTrace)
StackTrace:
$exc.StackTrace
#end
#if($exc.InnerException)
Inner exception:
#set($inner = $exc.InnerException)
#showexception($inner)
#end
#end
Unexpected error happenend
This is the rescue page. See the exception details below
#set($exception = $context.LastException)
#showexception($exception)
]]>