Home | History | Annotate | Download | only in cts

Lines Matching refs:Timeout

27     private final Timeout mTimeout;
30 this((Timeout) null, msg);
34 this((Timeout) null, String.format(format, args));
38 this((Timeout) null, cause, String.format(format, args), cause);
41 public RetryableException(@Nullable Timeout timeout, String msg) {
43 this.mTimeout = timeout;
46 public RetryableException(@Nullable Timeout timeout, String format, Object...args) {
48 this.mTimeout = timeout;
51 public RetryableException(@Nullable Timeout timeout, Throwable cause, String format,
54 this.mTimeout = timeout;
58 public Timeout getTimeout() {
65 return mTimeout == null ? superMessage : superMessage + " (timeout=" + mTimeout + ")";