Interface ResourceNotFoundError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
ResourceNotFoundErrorImpl

public interface ResourceNotFoundError extends ErrorObject

Returned when the resource addressed by the request URL does not exist.


Example to create an instance using the builder pattern

     ResourceNotFoundError resourceNotFoundError = ResourceNotFoundError.builder()
             .message("{message}")
             .build()