com.cloudesire.tisana4j.exceptions.PreconditionFailedException 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;
public class PreconditionFailedException extends RestException
{
private static final long serialVersionUID = -3953854267084448539L;
public PreconditionFailedException( int responseCode, String msgError )
{
super( responseCode, msgError );
}
}