mirror of
https://github.com/clearlinux/docker.git
synced 2026-08-28 21:35:47 +00:00
359b7df5d2
Docker-DCO-1.1-Signed-off-by: Alexander Larsson <alexl@redhat.com> (github: alexlarsson)
11 lines
247 B
Go
11 lines
247 B
Go
package networkdriver
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrNetworkOverlapsWithNameservers = errors.New("requested network overlaps with nameserver")
|
|
ErrNetworkOverlaps = errors.New("requested network overlaps with existing network")
|
|
)
|