Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NewUncertainProgressError (0.38 sec)

  1. pkg/volume/util/types/types.go

    type UncertainProgressError struct {
    	msg string
    }
    
    func (err *UncertainProgressError) Error() string {
    	return err.msg
    }
    
    // NewUncertainProgressError creates an instance of UncertainProgressError type
    func NewUncertainProgressError(msg string) *UncertainProgressError {
    	return &UncertainProgressError{msg: msg}
    }
    
    // IsOperationFinishedError checks if given error is of type that indicates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 17:23:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top