You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now, when there's an unknown value (not defined enum value) in the database, the select on EnumerationNameColumnType fails with the error:
NoSuchElementException: Array contains no element matching the predicate
This is caused by using the collections#first function here. Please, consider to use find or firstOrNull and throw more reasonable error instead. Thanks.
The text was updated successfully, but these errors were encountered:
Now, when there's an unknown value (not defined enum value) in the database, the select on
EnumerationNameColumnType
fails with the error:This is caused by using the
collections#first
function here. Please, consider to usefind
orfirstOrNull
and throw more reasonable error instead. Thanks.The text was updated successfully, but these errors were encountered: