Upgrading server dependancies (#8154)
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
8d66523ba7
Коммит
961c04cae9
15
vendor/github.com/mailru/easyjson/jlexer/error.go
сгенерированный
поставляемый
Обычный файл
15
vendor/github.com/mailru/easyjson/jlexer/error.go
сгенерированный
поставляемый
Обычный файл
@@ -0,0 +1,15 @@
|
||||
package jlexer
|
||||
|
||||
import "fmt"
|
||||
|
||||
// LexerError implements the error interface and represents all possible errors that can be
|
||||
// generated during parsing the JSON data.
|
||||
type LexerError struct {
|
||||
Reason string
|
||||
Offset int
|
||||
Data string
|
||||
}
|
||||
|
||||
func (l *LexerError) Error() string {
|
||||
return fmt.Sprintf("parse error: %s near offset %d of '%s'", l.Reason, l.Offset, l.Data)
|
||||
}
|
||||
Ссылка в новой задаче
Block a user