com.theupswell.appengine.counter.exceptions.NoCounterExistsException 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.NonNull;
import lombok.RequiredArgsConstructor;
import lombok.Setter;
import lombok.ToString;
/**
* An extension of {@link RuntimeException} that is used to indicate that a counter exists.
*/
@Getter
@Setter
@RequiredArgsConstructor
@EqualsAndHashCode(callSuper = true)
@ToString
public class NoCounterExistsException extends RuntimeException
{
@NonNull
private String counterName;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy