All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.googlecode.gwtrpcplus.shared.TimeoutException Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package com.googlecode.gwtrpcplus.shared;

import com.google.gwt.user.client.rpc.StatusCodeException;

public class TimeoutException extends StatusCodeException {
  private static final long serialVersionUID = 1L;
  private boolean resendAllowed;

  public TimeoutException(boolean resendAllowed) {
    super(408, "The Request timed out.");
    this.resendAllowed = resendAllowed;
  }

  /**
   * @return true when the Request was automaticly resended
   */
  public boolean isResendAllowed() {
    return resendAllowed;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy