com.cloudesire.tisana4j.exceptions.DefaultExceptionTranslator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tisana4j Show documentation
Show all versions of tisana4j Show documentation
Yet another (but missing) simple RESTful client library for Java.
package com.cloudesire.tisana4j.exceptions;
import com.cloudesire.tisana4j.ExceptionTranslator;
import org.apache.http.Header;
public class DefaultExceptionTranslator implements ExceptionTranslator
{
@SuppressWarnings ( "unchecked" )
@Override
public RestException translateException( int responseCode, String responseMessage, String errorStream,
ResponseMessage returnMessageRef, Header[] headers )
{
return null;
}
}