0 Star 0 Fork 0

longyancang/knife4jgo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
errors.go 856 Bytes
一键复制 编辑 原始数据 按行查看 历史
long 提交于 2024-09-14 15:30 . first commit
package openapi
import (
"fmt"
"reflect"
)
// FieldError is the error returned when an
// error related to a field occurs.
type FieldError struct {
Name string
TypeName string
Type reflect.Type
Message string
ParameterLocation string
Parent reflect.Type
}
// Error implements the builtin error interface for FieldError.
func (fe *FieldError) Error() string {
return fmt.Sprintf("%s: field=%s, type=%s", fe.Message, fe.Name, fe.TypeName)
}
// TypeError is the error returned when the generator
// encounters an unknow or unsupported type.
type TypeError struct {
Message string
Type reflect.Type
}
// Error implements the builtin error interface for TypeError.
func (te *TypeError) Error() string {
return fmt.Sprintf("%s: type=%s, kind=%s", te.Message, te.Type, te.Type.Kind())
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/longyancang/knife4jgo.git
git@gitee.com:longyancang/knife4jgo.git
longyancang
knife4jgo
knife4jgo
3e6627ea6597

搜索帮助

0d507c66 1850385 C8b1a773 1850385