Home | History | Annotate | Download | only in thread
      1 package org.testng.internal.thread;
      2 
      3 /**
      4  * Wrapper exception for ExecutionExceptions.
      5  *
      6  * @author <a href="mailto:the_mindstorm (at) evolva.ro>the_mindstorm</a>
      7  */
      8 public class ThreadExecutionException extends Exception {
      9 	static final long serialVersionUID = -7766644143333236263L;
     10 
     11    public ThreadExecutionException(Throwable t) {
     12 		super(t);
     13 	}
     14 }