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

com.theupswell.appengine.counter.exceptions.NoCounterExistsException Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
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