PrintStackTrace() public static method

public static PrintStackTrace ( ) : void
return void
Exemplo n.º 1
0
 public static void PrintStackTrace() {
   try {
     throw new Exception();
   }catch(Exception e){
     ScriptStream.PrintStackTrace(e);
   }
 }
Exemplo n.º 2
0
 public static void PrintStack(Exception e)
 {
     ScriptStream.PrintStackTrace(e);
 }
Exemplo n.º 3
0
 public static void PrintStack()
 {
     ScriptStream.PrintStackTrace();
 }