com.theupswell.appengine.counter.exceptions.InvalidCounterNameException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appengine-counter Show documentation
Show all versions of appengine-counter Show documentation
A sharded-counter implementation for Google Appengine from UpSwell
package com.theupswell.appengine.counter.exceptions;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
/**
* An extension of {@link RuntimeException} that is used to indicate that a counter exists.
*/
@Getter
@Setter
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class InvalidCounterNameException extends RuntimeException
{
/**
* Required-args constructor.
*
* @param message The exception message.
*/
public InvalidCounterNameException(final String message)
{
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy