1 16 package com.google.gwt.junit.client; 17 18 25 public final class TimeoutException extends RuntimeException { 26 27 public TimeoutException() { 28 } 29 30 36 public TimeoutException(int timeoutMillis) { 37 super("A timeout expired after " + timeoutMillis + "ms elapsed."); 38 } 39 40 45 public TimeoutException(String message) { 46 super(message); 47 } 48 49 55 public TimeoutException(String message, Throwable cause) { 56 super(message, cause); 57 } 58 59 64 public TimeoutException(Throwable cause) { 65 super(cause); 66 } 67 68 } 69 | Popular Tags |