auth.go raw

   1  package errors
   2  
   3  import "fmt"
   4  
   5  type AuthError struct {
   6  	Err error
   7  }
   8  
   9  func (e *AuthError) Error() string {
  10  	return fmt.Sprintf("authentication error: %v", e.Err)
  11  }
  12