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

com.googlecode.gwtrpcplus.shared.InternalServerException 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 InternalServerException extends StatusCodeException {
  private static final long serialVersionUID = 1L;

  /**
   * @param cause a simple Text whats the problem.
   */
  public InternalServerException(String cause) {
    super(500, "An Interal Serverexception was thrown (\"" + cause + "\"). Look at the Serverlog for more details.");
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy