Interface ObjectNotFoundError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
ObjectNotFoundErrorImpl

public interface ObjectNotFoundError extends ErrorObject

Returned when the requested resource was not found.


Example to create an instance using the builder pattern

     ObjectNotFoundError objectNotFoundError = ObjectNotFoundError.builder()
             .message("{message}")
             .build()