Message returns the value of the message property.
()
| 61 | |
| 62 | // Message returns the value of the message property. |
| 63 | func (e APIError) Message() string { |
| 64 | if e.message == "" { |
| 65 | return defaultMessage |
| 66 | } |
| 67 | return e.message |
| 68 | } |
| 69 | |
| 70 | // Tag returns the value of the tag property. |
| 71 | func (e APIError) Tag() string { |
no outgoing calls