-
Notifications
You must be signed in to change notification settings - Fork 17
/
error.go
51 lines (40 loc) · 1.69 KB
/
error.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package iso8601
import (
"errors"
"fmt"
)
var (
// ErrZoneCharacters indicates an incorrect amount of characters was passed to ParseISOZone.
ErrZoneCharacters = errors.New("iso8601: Expected between 3 and 6 characters for zone information")
// ErrInvalidZone indicates an invalid timezone per the standard that doesn't violate any specific
// character parsing rules.
ErrInvalidZone = errors.New("iso8601: Specified zone is invalid")
// ErrRemainingData indicates that there is extra data after a `Z` character.
ErrRemainingData = errors.New("iso8601: Unexepected remaining data after `Z`")
// ErrNotString indicates that a non string type was passed to the UnmarshalJSON method of `Time`.
ErrNotString = errors.New("iso8601: Invalid json type (expected string)")
// ErrPrecision indicates that there was too much precision (characters) given to parse
// for the fraction of a second of the input time.
ErrPrecision = errors.New("iso8601: Too many characters in fraction of second precision")
)
func newUnexpectedCharacterError(c byte) error {
return &UnexpectedCharacterError{Character: c}
}
// UnexpectedCharacterError indicates the parser scanned a character that was not expected at that time.
type UnexpectedCharacterError struct {
Character byte
}
func (e *UnexpectedCharacterError) Error() string {
return fmt.Sprintf("iso8601: Unexpected character `%c`", e.Character)
}
// RangeError indicates that a value is not in an expected range.
type RangeError struct {
Value string
Element string
Min int
Max int
Given int
}
func (e *RangeError) Error() string {
return fmt.Sprintf("iso8601: Cannot parse %q: %s %d is not in range %d-%d", e.Value, e.Element, e.Given, e.Min, e.Max)
}