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

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

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

public class ResourceNotFoundException extends ResourceManagementException {

	private static final long serialVersionUID = 1L;

	public ResourceNotFoundException(String id) {
		super(String.format("No book found for provided id=%s", id));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy