summaryrefslogtreecommitdiffabout
path: root/htdocs/exceptions/development/runtime.chtml
blob: 4a494bddb66006f3d7beb183c7615911cdb79ea1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
%%decl #include <konforka/exception.h>
<%code>
 try{
  try{
   try{
    throw konforka::exception(CODEPOINT,"throwing an exception to backtrace a bit");
   }catch(konforka::exception& ke){
    ke.see(CODEPOINT); throw;
   }
  }catch(konforka::exception& ke){
   ke.see(CODEPOINT); throw;
  }
 }catch(konforka::exception& ke){
  ke.see(CODEPOINT); throw;
 }
</%code>