()
| 1676 | } |
| 1677 | |
| 1678 | func (e *streamBootstrapError) Error() string { |
| 1679 | if e == nil || e.cause == nil { |
| 1680 | return "" |
| 1681 | } |
| 1682 | return e.cause.Error() |
| 1683 | } |
| 1684 | |
| 1685 | func (e *streamBootstrapError) Unwrap() error { |
| 1686 | if e == nil { |
no outgoing calls
no test coverage detected