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:[EMAIL PROTECTED]">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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to