| 392 | var _ errutil.NotFound = (*ErrCommentNotExist)(nil) |
| 393 | |
| 394 | type ErrCommentNotExist struct { |
| 395 | args map[string]any |
| 396 | } |
| 397 | |
| 398 | func IsErrCommentNotExist(err error) bool { |
| 399 | _, ok := err.(ErrCommentNotExist) |
nothing calls this directly
no outgoing calls
no test coverage detected