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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy