()
| 99 | } |
| 100 | |
| 101 | func (d *Definition) String() string { |
| 102 | if d == nil { |
| 103 | return "" |
| 104 | } |
| 105 | return fmt.Sprintf("error:%s (%s)", d.FullName(), d.messageFormat) |
| 106 | } |
| 107 | |
| 108 | // Error implements the error interface. |
| 109 | func (d *Definition) Error() string { |
no test coverage detected