/**************************************************************************** * This software is part of the gCube Project. * Site: http://www.gcube-system.org/ **************************************************************************** * The gCube/gCore software is licensed as Free Open Source software * conveying to the EUPL (http://ec.europa.eu/idabc/eupl). * The software and documentation is provided by its authors/distributors * "as is" and no expressed or * implied warranty is given for its use, quality or fitness for a * particular case. **************************************************************************** * Filename: InvalidParameterException.java **************************************************************************** * @author Daniele Strollo ***************************************************************************/ package org.gcube.portlets.admin.sepeditor.shared; import com.google.gwt.user.client.rpc.IsSerializable; /** * @author Daniele Strollo (ISTI-CNR) * */ public class InvalidParameterException extends Exception implements IsSerializable { private static final long serialVersionUID = 1L; public InvalidParameterException() { super(); } public InvalidParameterException(String message, Throwable cause) { super(message, cause); } public InvalidParameterException(String message) { super(message); } public InvalidParameterException(Throwable cause) { super(cause); } }