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

com.github.dgrandemange.idempotencereceiver.examples.webapp.exception.ResourceAlreadyExistsException Maven / Gradle / Ivy

The newest version!
package com.github.dgrandemange.idempotencereceiver.examples.webapp.exception;

public class ResourceAlreadyExistsException extends ResourceManagementException {

	private static final long serialVersionUID = 1L;

	public ResourceAlreadyExistsException(String id) {
		super(String.format("Book already registered (id=%s)", id));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy