diff --git a/active-record/src/main/java/com/iluwatar/activerecord/RecordBase.java b/active-record/src/main/java/com/iluwatar/activerecord/RecordBase.java index f43f5d0a48ea..668c4f2a0c00 100644 --- a/active-record/src/main/java/com/iluwatar/activerecord/RecordBase.java +++ b/active-record/src/main/java/com/iluwatar/activerecord/RecordBase.java @@ -76,7 +76,7 @@ public T findById(Long id, Class clazz) { } } catch (SQLException e) { throw new RuntimeException( - "Unable to the record for the following domain model : " + clazz.getName() + " by id=" + "Unable to fine a record for the following domain model : " + clazz.getName() + " by id=" + id + " due to the data persistence error", e); }