()
| 332 | } |
| 333 | |
| 334 | func (e *smbPathError) Error() string { |
| 335 | if e.Path == "" { |
| 336 | return "samba path should contain valid host, filepath, and authentication if necessary (smb://<user>:<password>@<host>/<file_path>)" |
| 337 | } |
| 338 | return fmt.Sprintf("samba path should contain valid host, filepath, and authentication if necessary (%s)", e.Path) |
| 339 | } |
| 340 | |
| 341 | type smbGeneralError struct { |
| 342 | err error |
no outgoing calls
no test coverage detected