FullCommand returns the command string that occurred at.
()
| 26 | |
| 27 | // FullCommand returns the command string that occurred at. |
| 28 | func (e *Error) FullCommand() string { |
| 29 | return fmt.Sprintf("%v %v %v", e.Op, e.Src, e.Dst) |
| 30 | } |
| 31 | |
| 32 | // Error implements the error interface. |
| 33 | func (e *Error) Error() string { |