DataBridge Documentation 2.0.17
A Java library for managing database connections and transactions
|
Public Member Functions | |
ValueNotFoundException (String err) | |
ValueNotFoundException
is a custom exception that extends RuntimeException
.
This exception is thrown when a specific value is not found during an operation, such as when querying a database or searching for a particular item that does not exist. It is a RuntimeException
, meaning it is unchecked and does not need to be declared or caught in a method signature.
io.github.kdesp73.databridge.exceptions.ValueNotFoundException.ValueNotFoundException | ( | String | err | ) |
Constructs a new ValueNotFoundException
with the specified error message.
err | the detail message explaining the reason for the exception. |