All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.resteasy.client.exception.ResteasyUnsupportedHttpVersionException Maven / Gradle / Ivy

There is a newer version: 4.0.0.Beta5
Show newest version
package org.jboss.resteasy.client.exception;

/**
 * @author Ron Sigal
 * @version $Revision: 1.1 $
 *
 * Copyright Jul 28, 2012
 */
public class ResteasyUnsupportedHttpVersionException extends ResteasyProtocolException
{
   private static final long serialVersionUID = -5711578608757689465L;

   public ResteasyUnsupportedHttpVersionException()
   {
   }

   public ResteasyUnsupportedHttpVersionException(final String message)
   {
      super(message);
   }

   public ResteasyUnsupportedHttpVersionException(final String message, final Throwable cause)
   {
      super(message, cause);
   }

   public ResteasyUnsupportedHttpVersionException(final Throwable cause)
   {
      super(cause);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy