(code commonv1.Code, msg string)
| 51 | } |
| 52 | |
| 53 | func New(code commonv1.Code, msg string) *DfError { |
| 54 | return &DfError{ |
| 55 | Code: code, |
| 56 | Message: msg, |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | func Newf(code commonv1.Code, format string, a ...any) *DfError { |
| 61 | return &DfError{ |
no outgoing calls
no test coverage detected