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

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

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

/**
 * gwt-test-utils base exception.
 * 
 * @author Gael Lazzari
 * 
 */
public class GwtTestException extends RuntimeException {

   private static final long serialVersionUID = 5806774621682061491L;

   public GwtTestException() {
   }

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

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy