Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 622 Bytes

EntitiesNotFoundException.md

File metadata and controls

14 lines (9 loc) · 622 Bytes

EntitiesNotFoundException

The EntitiesNotFoundException class is an exception thrown to indicate that a collection of entities could not be found in a program. This exception is typically used when attempting to retrieve or operate on a set of entities that are expected to exist but are not found in the underlying data source.

Description

This class extends RuntimeException and provides a constructor to create instances with a specified detail message.

Constructor

  1. EntitiesNotFoundException(String message)
    • Constructs a new EntitiesNotFoundException with the specified detail message.