You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-dev@portals.apache.org by ta...@apache.org on 2007/01/30 03:16:10 UTC

svn commit: r501295 - /portals/jetspeed-2/trunk/jetspeed-api/src/java/org/apache/jetspeed/aggregator/PortletAccessDeniedException.java

Author: taylor
Date: Mon Jan 29 18:16:10 2007
New Revision: 501295

URL: http://svn.apache.org/viewvc?view=rev&rev=501295
Log:
https://issues.apache.org/jira/browse/JS2-645

Added:
    portals/jetspeed-2/trunk/jetspeed-api/src/java/org/apache/jetspeed/aggregator/PortletAccessDeniedException.java

Added: portals/jetspeed-2/trunk/jetspeed-api/src/java/org/apache/jetspeed/aggregator/PortletAccessDeniedException.java
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/jetspeed-api/src/java/org/apache/jetspeed/aggregator/PortletAccessDeniedException.java?view=auto&rev=501295
==============================================================================
--- portals/jetspeed-2/trunk/jetspeed-api/src/java/org/apache/jetspeed/aggregator/PortletAccessDeniedException.java (added)
+++ portals/jetspeed-2/trunk/jetspeed-api/src/java/org/apache/jetspeed/aggregator/PortletAccessDeniedException.java Mon Jan 29 18:16:10 2007
@@ -0,0 +1,61 @@
+/**
+ * Created on Jan 16, 2004
+ *
+ * 
+ * @author
+ */
+package org.apache.jetspeed.aggregator;
+
+import org.apache.jetspeed.exception.JetspeedException;
+
+/**
+ * <p>
+ * NoPortletAccessException
+ * </p>
+ * 
+ * @author <a href="mailto:taylor@apache.org">David Sean Taylor</a>
+ * @version $Id: $
+ *
+ */
+public class PortletAccessDeniedException extends JetspeedException
+{
+
+
+    /**
+     * 
+     */
+    public PortletAccessDeniedException()
+    {
+        super();
+        
+    }
+
+    /**
+     * @param message
+     */
+    public PortletAccessDeniedException(String message)
+    {
+        super(message);
+        
+    }
+
+    /**
+     * @param nested
+     */
+    public PortletAccessDeniedException(Throwable nested)
+    {
+        super(nested);
+        
+    }
+
+    /**
+     * @param msg
+     * @param nested
+     */
+    public PortletAccessDeniedException(String msg, Throwable nested)
+    {
+        super(msg, nested);
+        
+    }
+
+}



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-dev-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-dev-help@portals.apache.org