You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							23 lines
						
					
					
						
							369 B
						
					
					
				
			
		
		
	
	
							23 lines
						
					
					
						
							369 B
						
					
					
				| package redis
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| )
 | |
| 
 | |
| // Redis nil reply.
 | |
| var Nil = errorf("redis: nil")
 | |
| 
 | |
| // Redis transaction failed.
 | |
| var TxFailedErr = errorf("redis: transaction failed")
 | |
| 
 | |
| type redisError struct {
 | |
| 	s string
 | |
| }
 | |
| 
 | |
| func errorf(s string, args ...interface{}) redisError {
 | |
| 	return redisError{s: fmt.Sprintf(s, args...)}
 | |
| }
 | |
| 
 | |
| func (err redisError) Error() string {
 | |
| 	return err.s
 | |
| }
 | |
| 
 |