package reuseport

import (
	
)

// ErrNoReusePort is returned if the OS doesn't support SO_REUSEPORT.
type ErrNoReusePort struct {
	err error
}

// Error implements error interface.
func ( *ErrNoReusePort) () string {
	return fmt.Sprintf("The OS doesn't support SO_REUSEPORT: %v", .err)
}