From bf578453be6b567f096a34de1e4b922517bb0db4 Mon Sep 17 00:00:00 2001 From: Massimiliano Assante Date: Thu, 28 Feb 2013 14:01:25 +0000 Subject: [PATCH] ADDED SHARED EXCEPTION git-svn-id: http://svn.research-infrastructures.eu/public/d4science/gcube/trunk/portlets/admin/rmp-common-library@70596 82a268e6-3cf1-43bd-a215-b396298e98cf --- .../InvalidPermissionsException.java | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 src/main/java/org/gcube/resourcemanagement/support/shared/exceptions/InvalidPermissionsException.java diff --git a/src/main/java/org/gcube/resourcemanagement/support/shared/exceptions/InvalidPermissionsException.java b/src/main/java/org/gcube/resourcemanagement/support/shared/exceptions/InvalidPermissionsException.java new file mode 100644 index 0000000..91871d5 --- /dev/null +++ b/src/main/java/org/gcube/resourcemanagement/support/shared/exceptions/InvalidPermissionsException.java @@ -0,0 +1,44 @@ +/**************************************************************************** + * 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: InvalidPermissionsException.java + **************************************************************************** + * @author Daniele Strollo + ***************************************************************************/ + +package org.gcube.resourcemanagement.support.shared.exceptions; + +import com.google.gwt.user.client.rpc.IsSerializable; + +/** + * @author Daniele Strollo (ISTI-CNR) + * + */ +public class InvalidPermissionsException extends Exception implements IsSerializable { + private static final long serialVersionUID = 1L; + + public InvalidPermissionsException() { + super(); + } + + public InvalidPermissionsException(String message, Throwable cause) { + super(message, cause); + } + + public InvalidPermissionsException(String message) { + super(message); + } + + public InvalidPermissionsException(Throwable cause) { + super(cause); + } + +}