Home | History | Annotate | Download | only in thread
      1 package org.testng.internal.thread;
      2 
      3 /**
      4  * Exception used to signal a thread timeout.
      5  *
      6  * @author <a href='mailto:the_mindstorm (at) evolva.ro'>Alexandru Popescu</a>
      7  */
      8 public class ThreadTimeoutException extends Exception {
      9   static final long serialVersionUID = 7009400729783393548L;
     10 
     11    public ThreadTimeoutException(String msg) {
     12       super(msg);
     13    }
     14 
     15    public ThreadTimeoutException(Throwable cause) {
     16       super(cause);
     17    }
     18 
     19    public ThreadTimeoutException(String msg, Throwable cause) {
     20       super(msg, cause);
     21    }
     22 }