Skip to content

Commit

Permalink
add errors to nucleus error for dim data
Browse files Browse the repository at this point in the history
  • Loading branch information
bischoffz committed Feb 22, 2024
1 parent c9490e8 commit bc06c52
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ public enum NucleusError implements ContractError {
NULL_IDENTIFIABLE_FUNCTION("Null identifiable function"), NULL_EVENT_FILTER("Null event filter"),
INVALID_PLAN_ARRIVAL_ID("The given plan id is invalid. It either needs to be >=0, or -1, and nothing else"),
INVALID_DIMENSION_LEVEL("Invalid Dimension Level"),
UNKNOWN_DIMENSION_LEVEL_NAME("The given level name is not known"),;
UNKNOWN_DIMENSION_LEVEL_NAME("The given level name is not known"),
DUPLICATE_DIMENSION_LEVEL_NAME("Duplicate Dimension Level Name"),
NULL_DIMENSION_LEVEL_NAME("Null Dimension level name"),;

private final String description;

Expand Down

0 comments on commit bc06c52

Please sign in to comment.