mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 20:17:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			314 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			314 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package logical
 | 
						|
 | 
						|
type HTTPCodedError interface {
 | 
						|
	Error() string
 | 
						|
	Code() int
 | 
						|
}
 | 
						|
 | 
						|
func CodedError(c int, s string) HTTPCodedError {
 | 
						|
	return &codedError{s, c}
 | 
						|
}
 | 
						|
 | 
						|
type codedError struct {
 | 
						|
	s    string
 | 
						|
	code int
 | 
						|
}
 | 
						|
 | 
						|
func (e *codedError) Error() string {
 | 
						|
	return e.s
 | 
						|
}
 | 
						|
 | 
						|
func (e *codedError) Code() int {
 | 
						|
	return e.code
 | 
						|
}
 |