github.com/sap/cf-mta-plugin@v2.6.3+incompatible/clients/csrf/forbidden_error.go (about)

     1  package csrf
     2  
     3  const RetryIsNeeded = "retry is needed"
     4  
     5  type ForbiddenError struct {
     6  	value string
     7  	ID    int
     8  }
     9  
    10  func (e *ForbiddenError) Error() string {
    11  	return RetryIsNeeded
    12  }