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