com.basho.riak.client.api.RiakException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of riak-client Show documentation
Show all versions of riak-client Show documentation
HttpClient-based client for Riak
The newest version!
package com.basho.riak.client.api;
public class RiakException extends Exception
{
public RiakException()
{
super();
}
public RiakException(String message)
{
super(message);
}
public RiakException(String message, Throwable cause)
{
super(message, cause);
}
public RiakException(Throwable cause)
{
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy