Skip to content

Commit

Permalink
Merge pull request #391 from conveyal/shared-stops-validation
Browse files Browse the repository at this point in the history
fix: new shared stops error types
  • Loading branch information
miles-grant-ibigroup authored Aug 11, 2023
2 parents 9f22402 + 9903b3b commit 9837b64
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/com/conveyal/gtfs/error/NewGTFSErrorType.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,11 @@ public enum NewGTFSErrorType {
// MTC-specific errors.
FIELD_VALUE_TOO_LONG(Priority.MEDIUM, "Field value has too many characters."),

// Shared Stops-specifc errors.
MULTIPLE_SHARED_STOPS_GROUPS(Priority.HIGH, "A GTFS stop belongs to more than one shared-stop group."),
SHARED_STOP_GROUP_MUTLIPLE_PRIMARY_STOPS(Priority.HIGH, "A Shared-stop group has multiple primary stops."),
SHARED_STOP_GROUP_ENTITY_DOES_NOT_EXIST(Priority.MEDIUM, "The stop referenced by a shared-stop does not exist."),

// Unknown errors.
OTHER(Priority.LOW, "Other errors.");

Expand Down

0 comments on commit 9837b64

Please sign in to comment.