parent
							
								
									972516ff9b
								
							
						
					
					
						commit
						f3b8874c4d
					
				@ -0,0 +1,16 @@ | 
				
			|||||||
 | 
					package errors | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import "fmt" | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// Malformed error
 | 
				
			||||||
 | 
					type Malformed string | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// Error message
 | 
				
			||||||
 | 
					func (m Malformed) Error() string { | 
				
			||||||
 | 
						return fmt.Sprintf("Malformed, %s", string(m)) | 
				
			||||||
 | 
					} | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// Malformedf creates an instance of Malformed
 | 
				
			||||||
 | 
					func Malformedf(format string, params ...interface{}) error { | 
				
			||||||
 | 
						return Malformed(fmt.Sprintf(format, params...)) | 
				
			||||||
 | 
					} | 
				
			||||||
					Loading…
					
					
				
		Reference in new issue