Beispiel #1
0
  public int compareTo(TimeoutException other) {
    if (!getClass().equals(other.getClass())) {
      return getClass().getName().compareTo(other.getClass().getName());
    }

    int lastComparison = 0;
    TimeoutException typedOther = (TimeoutException) other;

    return 0;
  }