You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by ri...@apache.org on 2005/09/30 05:39:13 UTC

svn commit: r292614 - /beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/internal/JavaControlUtils.java

Author: rich
Date: Thu Sep 29 20:39:08 2005
New Revision: 292614

URL: http://svn.apache.org/viewcvs?rev=292614&view=rev
Log:
Removed an unused inner class.

tests: bvt in netui (WinXP)


Modified:
    beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/internal/JavaControlUtils.java

Modified: beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/internal/JavaControlUtils.java
URL: http://svn.apache.org/viewcvs/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/internal/JavaControlUtils.java?rev=292614&r1=292613&r2=292614&view=diff
==============================================================================
--- beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/internal/JavaControlUtils.java (original)
+++ beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/pageflow/internal/JavaControlUtils.java Thu Sep 29 20:39:08 2005
@@ -83,23 +83,6 @@
         }
     }
     
-    public static class ControlInstantiationException
-        extends Exception
-    {
-        private String _controlBeanClassName;
-        
-        public ControlInstantiationException( String controlBeanClassName, Throwable cause_ )
-        {
-            super( cause_ );
-            _controlBeanClassName = controlBeanClassName;
-        }
-
-        public String getControlBeanClassName()
-        {
-            return _controlBeanClassName;
-        }
-    }
-    
     private static ControlBeanContext getControlBeanContext( HttpServletRequest request, HttpServletResponse response,
                                                              ServletContext servletContext, boolean createIfMissing )
     {