github.com/franc20/ayesa_sap@v7.0.0-beta.28.0.20200124003224-302d4d52fa6c+incompatible/api/cloudcontroller/ccerror/pipe_seek_error.go (about)

     1  package ccerror
     2  
     3  import "fmt"
     4  
     5  // PipeSeekError is returned by Pipebomb when a Seek is called.
     6  type PipeSeekError struct {
     7  	// Err is the error that caused the Seek to be called.
     8  	Err error
     9  }
    10  
    11  func (e PipeSeekError) Error() string {
    12  	return fmt.Sprintf("error seeking a stream on retry: %s", e.Err)
    13  }