org.kairosdb.client.builder.DataFormatException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
Java client for pushing and querying data to/from KairosDB
package org.kairosdb.client.builder;
public class DataFormatException extends Exception
{
public DataFormatException()
{
super();
}
public DataFormatException(String s)
{
super(s);
}
}