MethodException.java :  » Wiki-Engine » gwtwiki » info » bliki » api » Java Open Source

Java Open Source » Wiki Engine » gwtwiki 
gwtwiki » info » bliki » api » MethodException.java
package info.bliki.api;

/**
 * this Exception is thrown, when the underlying HttpClient throws an Exception
 */
public class MethodException extends NetworkException {
  /**
   * Constructs a new exception with null as its detail message.
   */
  public MethodException() {
    super();
  }

  /**
   * Constructs a new exception with the specified detail message.
   */
  public MethodException(String message) {
    super(message);
  }

  /**
   * Constructs a new exception with the specified detail message and cause.
   */
  public MethodException(String message, Throwable cause) {
    super(message);
  }

  /**
   * Constructs a new exception with the specified cause and a detail message of
   * (cause==null ? null : cause.toString()) (which typically contains the class
   * and detail message of cause).
   */
  public MethodException(Throwable cause) {
    super();
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.