11 lines
		
	
	
		
			279 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			279 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package execution
 | |
| 
 | |
| import "fmt"
 | |
| 
 | |
| var (
 | |
| 	ErrProcessNotFound   = fmt.Errorf("process not found")
 | |
| 	ErrProcessNotExited  = fmt.Errorf("process has not exited")
 | |
| 	ErrContainerNotFound = fmt.Errorf("container not found")
 | |
| 	ErrContainerExists   = fmt.Errorf("container already exists")
 | |
| )
 | 
