com.qmetric.feed.consumer.store.AlreadyConsumingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hal-feed-consumer Show documentation
Show all versions of hal-feed-consumer Show documentation
Java library for consuming HAL+JSON feeds (https://github.com/qmetric/hal-feed-server)
package com.qmetric.feed.consumer.store;
public class AlreadyConsumingException extends Exception
{
public AlreadyConsumingException()
{
}
public AlreadyConsumingException(final Throwable throwable)
{
super(throwable);
}
}