errors.go 645 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // SPDX-FileCopyrightText: Adam Evyčędo
  2. //
  3. // SPDX-License-Identifier: AGPL-3.0-or-later
  4. package errors
  5. import (
  6. "fmt"
  7. )
  8. type NoSchedule struct {
  9. Date string
  10. }
  11. func (e NoSchedule) Error() string {
  12. return "No schedule found for " + e.Date
  13. }
  14. type NoStopOrder struct {
  15. TripID string
  16. Order int
  17. }
  18. func (e NoStopOrder) Error() string {
  19. return fmt.Sprintf("No stopOrder for trip %s, order %d", e.TripID, e.Order)
  20. }
  21. type VersionError struct {
  22. Msg string
  23. }
  24. func (v VersionError) Error() string {
  25. return v.Msg
  26. }
  27. type NoVersionError struct {
  28. Date string
  29. }
  30. func (e NoVersionError) Error() string {
  31. return "No version for " + e.Date
  32. }