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

com.sap.cloud.yaas.servicesdk.springboot.jersey.ResourceNotFoundException Maven / Gradle / Ivy

There is a newer version: 4.17.1
Show newest version
/*
 * © 2017 SAP SE or an SAP affiliate company.
 * All rights reserved.
 * Please see http://www.sap.com/corporate-en/legal/copyright/index.epx for additional trademark information and
 * notices.
 */
package com.sap.cloud.yaas.servicesdk.springboot.jersey;

import javax.ws.rs.NotFoundException;


/**
 * Custom exception thrown when a resource is explicitly requested at a formally valid path, but the given name, code,
 * or identifier does not match any existing resource.
 */
public class ResourceNotFoundException extends NotFoundException
{
	private static final long serialVersionUID = 8518876006663746649L;

	/**
	 * Creates new instance of the exception.
	 * 
	 * @param message the exception message
	 */
	public ResourceNotFoundException(final String message)
	{
		super(message);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy