errors.go 214 B

1234567891011
  1. package inns
  2. import (
  3. "errors"
  4. )
  5. var (
  6. ErrIncorrectFormat = errors.New("incorrect INN format")
  7. ErrIncorrectLen = errors.New("incorrect INN length")
  8. ErrSumsNotMatch = errors.New("control sums do not match")
  9. )