Fan.Sys.Err.dumpStack C# (CSharp) Method

dumpStack() public static method

Dump a readable stack trace.
public static dumpStack ( Exception err ) : void
err System.Exception
return void
        public static void dumpStack(Exception err)
        {
            dumpStack(err.Message, err, 0);
        }

Same methods

Err::dumpStack ( Exception err, OutStream @out ) : void
Err::dumpStack ( string msg, Exception err, OutStream @out, int indent ) : void
Err::dumpStack ( string msg, Exception err, int indent ) : void

Usage Example

Ejemplo n.º 1
0
 public Map meta()
 {
     if (m_meta == null)
     {
         try
         {
             if (fpod.m_meta != null)
             {
                 m_meta = (Map)fpod.m_meta;
             }
             else
             {
                 InStream input = new SysInStream(fpod.m_store.read("meta.props"));
                 m_meta = (Map)input.readProps().toImmutable();
                 input.close();
             }
         }
         catch (Exception e)
         {
             Err.dumpStack(e);
             m_meta = Sys.m_emptyStrStrMap;
         }
     }
     return(m_meta);
 }
All Usage Examples Of Fan.Sys.Err::dumpStack