All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.basho.riak.client.api.RiakException Maven / Gradle / Ivy

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