com.cloudesire.tisana4j.exceptions.RuntimeRestException 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 RuntimeRestException extends RuntimeException
{
private static final long serialVersionUID = 8233897756123307444L;
public RuntimeRestException( Exception e )
{
super( e );
}
public RuntimeRestException( String message )
{
super( message );
}
}