[jboss-remoting-commits] JBoss Remoting SVN: r5107 - remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Thu Apr 30 21:01:01 EDT 2009


Author: david.lloyd at jboss.com
Date: 2009-04-30 21:01:01 -0400 (Thu, 30 Apr 2009)
New Revision: 5107

Modified:
   remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3/Remoting.java
Log:
Remove unused exception type

Modified: remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3/Remoting.java
===================================================================
--- remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3/Remoting.java	2009-05-01 00:24:00 UTC (rev 5106)
+++ remoting3/trunk/jboss-remoting/src/main/java/org/jboss/remoting3/Remoting.java	2009-05-01 01:01:01 UTC (rev 5107)
@@ -132,53 +132,5 @@
         }
     }
 
-    /**
-     * An exception indicating that there was a problem creating an endpoint.
-     *
-     * @apiviz.exclude
-     */
-    public static final class EndpointException extends RemotingException {
-        private static final long serialVersionUID = -9157350594373125152L;
-
-        /**
-         * Constructs a <tt>EndpointException</tt> with no detail message. The cause is not initialized, and may
-         * subsequently be initialized by a call to {@link #initCause(Throwable) initCause}.
-         */
-        public EndpointException() {
-        }
-
-        /**
-         * Constructs a <tt>EndpointException</tt> with the specified detail message. The cause is not initialized, and
-         * may subsequently be initialized by a call to {@link #initCause(Throwable) initCause}.
-         *
-         * @param msg the detail message
-         */
-        public EndpointException(String msg) {
-            super(msg);
-        }
-
-        /**
-         * Constructs a <tt>EndpointException</tt> with the specified cause. The detail message is set to:
-         * <pre>
-         *  (cause == null ? null : cause.toString())</pre>
-         * (which typically contains the class and detail message of <tt>cause</tt>).
-         *
-         * @param cause the cause (which is saved for later retrieval by the {@link #getCause()} method)
-         */
-        public EndpointException(Throwable cause) {
-            super(cause);
-        }
-
-        /**
-         * Constructs a <tt>EndpointException</tt> with the specified detail message and cause.
-         *
-         * @param msg the detail message
-         * @param cause the cause (which is saved for later retrieval by the {@link #getCause()} method)
-         */
-        public EndpointException(String msg, Throwable cause) {
-            super(msg, cause);
-        }
-    }
-
     private Remoting() { /* empty */ }
 }




More information about the jboss-remoting-commits mailing list