bigloo.foreign.debug_dot_handler C# (CSharp) Method

debug_dot_handler() public static method

public static debug_dot_handler ( Exception v, exit tag ) : Object
v Exception
tag exit
return Object
        public static Object debug_dot_handler( Exception  v, exit tag )
        {
            try
            {
               Console.Out.Flush();

               String stack_trace= stackwriter.demangle( v.StackTrace );

               return fail( "Exception caught in Bigloo .NET runtime", v.Message, ("\n"+stack_trace) );
            }
            catch ( bexception bex )
            {
               return debug_handler( bex, tag );
            }
        }
foreign