[jboss-cvs] JBossRemoting/src/main/org/jboss/remoting/transport/http ...

Tom Elrod tom.elrod at jboss.com
Mon Jul 17 01:34:39 EDT 2006


  User: telrod  
  Date: 06/07/17 01:34:39

  Modified:    src/main/org/jboss/remoting/transport/http  
                        HTTPClientInvoker.java
  Added:       src/main/org/jboss/remoting/transport/http  
                        WebServerError.java
  Log:
  JBREM-544 - put the WebServerError class under test instead of remoting root.  Am moving it.
  
  Revision  Changes    Path
  1.26      +0 -1      JBossRemoting/src/main/org/jboss/remoting/transport/http/HTTPClientInvoker.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: HTTPClientInvoker.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/transport/http/HTTPClientInvoker.java,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -b -r1.25 -r1.26
  --- HTTPClientInvoker.java	17 Jul 2006 04:54:00 -0000	1.25
  +++ HTTPClientInvoker.java	17 Jul 2006 05:34:38 -0000	1.26
  @@ -37,7 +37,6 @@
   import org.jboss.remoting.marshal.http.HTTPMarshaller;
   import org.jboss.remoting.marshal.serializable.SerializableUnMarshaller;
   import org.jboss.remoting.transport.web.WebUtil;
  -import org.jboss.test.remoting.transport.http.WebServerError;
   import org.jboss.util.Base64;
   
   import java.io.IOException;
  
  
  
  1.1      date: 2006/07/17 05:34:38;  author: telrod;  state: Exp;JBossRemoting/src/main/org/jboss/remoting/transport/http/WebServerError.java
  
  Index: WebServerError.java
  ===================================================================
  /*
  * JBoss, Home of Professional Open Source
  * Copyright 2005, JBoss Inc., and individual contributors as indicated
  * by the @authors tag. See the copyright.txt in the distribution for a
  * full listing of individual contributors.
  *
  * This is free software; you can redistribute it and/or modify it
  * under the terms of the GNU Lesser General Public License as
  * published by the Free Software Foundation; either version 2.1 of
  * the License, or (at your option) any later version.
  *
  * This software is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with this software; if not, write to the Free
  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  */
  package org.jboss.remoting.transport.http;
  
  import java.io.IOException;
  
  /**
   * Exception to be thrown by http client invoker in the case
   * an error is received from web server is calling upon.
   * The message within this exception will be the data from the error
   * stream of the web server (error html in most cases).
   * @author <a href="mailto:tom.elrod at jboss.com">Tom Elrod</a>
   */
  public class WebServerError extends IOException
  {
  
     public WebServerError(String s)
     {
        super(s);
     }
  }
  
  



More information about the jboss-cvs-commits mailing list