()
| 98 | } |
| 99 | |
| 100 | func (e *shareError) Error() string { |
| 101 | return fmt.Sprintf("share: %v (code=%v, type=%v)", e.message, e.code, e.response) |
| 102 | } |
| 103 | |
| 104 | func unauthorized(code errorCode, format string, args ...interface{}) *shareError { |
| 105 | return &shareError{ |
no outgoing calls