1 6 21 22 package de.schlichtherle.awt; 23 24 32 public class EventDispatchTimeoutException extends Exception { 33 34 private final long timeout; 35 36 39 EventDispatchTimeoutException(final long timeout) { 40 super("Waiting for the EDT timed out after milliseconds: " + timeout); 41 this.timeout = timeout; 42 } 43 44 public long getTimeout() { 45 return timeout; 46 } 47 } 48 | Popular Tags |