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

com.googlecode.gwt.test.exceptions.GwtTestRpcException Maven / Gradle / Ivy

There is a newer version: 0.63
Show newest version
package com.googlecode.gwt.test.exceptions;

/**
 * Exception thrown when an error occurs during a RPC call simulation.
 * 
 * @author Gael Lazzari
 * 
 */
public class GwtTestRpcException extends GwtTestException {

   private static final long serialVersionUID = -7518261539641239910L;

   public GwtTestRpcException() {
   }

   public GwtTestRpcException(String message) {
      super(message);
   }

   public GwtTestRpcException(String message, Throwable cause) {
      super(message, cause);
   }

   public GwtTestRpcException(Throwable cause) {
      super(cause);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy