forked from moov-io/fed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fileErrors.go
37 lines (31 loc) · 1.04 KB
/
fileErrors.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright 2020 The Moov Authors
// Use of this source code is governed by an Apache License
// license that can be found in the LICENSE file.
package fed
import (
"errors"
"fmt"
)
// ErrFileTooLong is the error given when a file exceeds the maximum possible length
var (
ErrFileTooLong = errors.New("file exceeds maximum possible number of lines")
// Similar to FEDACH site
ErrRoutingNumberNumeric = errors.New("the routing number entered is not numeric")
)
// RecordWrongLengthErr is the error given when a record is the wrong length
type RecordWrongLengthErr struct {
Message string
LengthRequired int
Length int
}
// NewRecordWrongLengthErr creates a new error of the RecordWrongLengthErr type
func NewRecordWrongLengthErr(lengthRequired int, length int) RecordWrongLengthErr {
return RecordWrongLengthErr{
Message: fmt.Sprintf("must be %d characters and found %d", lengthRequired, length),
LengthRequired: lengthRequired,
Length: length,
}
}
func (e RecordWrongLengthErr) Error() string {
return e.Message
}