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

microsoft.exchange.webservices.data.HttpErrorException Maven / Gradle / Ivy

Go to download

The source came from http://archive.msdn.microsoft.com/ewsjavaapi Support for Maven has been added.

The newest version!
package microsoft.exchange.webservices.data;


/**
 * User: nwoodham Date: 3/8/11 Time: 5:30 PM
 */
public class HttpErrorException extends Exception
{
  private final int code;

  public HttpErrorException()
  {
    super();
    this.code = 0;
  }

  public HttpErrorException(String message, int code)
  {
    super(message);
    this.code = code;
  }

  public int getHttpErrorCode()
  {
    return this.code;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy