Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ public class ErrorMessage {
public static final String CLUSTERING_KEY_NOT_FOUND =
"The provided clustering key %s was not found";
public static final String INVALID_PROJECTION = "The column '%s' was not found";
public static final String ERROR_CRUD_EXCEPTION =
"Something went wrong while trying to save the data. Details: %s";
public static final String ERROR_SCAN =
"Something went wrong while scanning. Are you sure you are running in the correct transaction mode? Details: %s";
public static final String MISSING_NAMESPACE_OR_TABLE = "Missing namespace or table: %s, %s";
public static final String TABLE_METADATA_RETRIEVAL_FAILED =
"Failed to retrieve table metadata. Details: %s";
Expand Down
Loading