BowlerKernel
Tracer.java
Go to the documentation of this file.
1 package com.neuronrobotics.sdk.common;
2 
3 // TODO: Auto-generated Javadoc
7 public class Tracer {
8 
14  public static String calledFrom() {
15  try
16  {
17  throw new Exception("Who called me?");
18  }
19  catch( Exception e )
20  {
21  return e.getStackTrace()[2].getClassName()+":"+e.getStackTrace()[2].getMethodName();
22  }
23  }
24 }