()
| 49 | } |
| 50 | |
| 51 | func (e *Error) String() string { |
| 52 | if e == nil { |
| 53 | return "" |
| 54 | } |
| 55 | return fmt.Sprintf("error:%s (%s)", e.FullName(), e.FormatMessage(e.PublicAttributes())) |
| 56 | } |
| 57 | |
| 58 | // Error implements the error interface. |
| 59 | func (e *Error) Error() string { |
no test coverage detected