Skip to content

Commit

Permalink
repo-sqale: fixes of messages in UnsupportedOperationException
Browse files Browse the repository at this point in the history
  • Loading branch information
virgo47 committed May 27, 2021
1 parent 3b92c9f commit 4bd20fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -80,7 +80,7 @@ public void addRealValues(Collection<?> values) {
}

public void addValues(Collection<T> values) {
throw new UnsupportedOperationException("deleteRealValues not implemented");
throw new UnsupportedOperationException("addValues not implemented");
}

/** Adds the provided real values to the database, implements ADD modification. */
Expand All @@ -89,7 +89,7 @@ public void deleteRealValues(Collection<?> values) {
}

public void deleteValues(Collection<T> values) {
throw new UnsupportedOperationException("deleteRealValues not implemented");
throw new UnsupportedOperationException("deleteValues not implemented");
}

/** Resets the database columns or deletes sub-entities like refs, containers, etc. */
Expand Down
Expand Up @@ -76,6 +76,6 @@ public R initRowObject(S schemaObject, OR ownerRow) {

@Override
public R insert(S schemaObject, OR ownerRow, JdbcSession jdbcSession) {
throw new UnsupportedOperationException("insert not implemented in the subclass");
throw new UnsupportedOperationException("insert must be implemented in the subclass");
}
}

0 comments on commit 4bd20fe

Please sign in to comment.