blob: 7cd934571cd44374327775f46e3f84cf5f1a211f [file] [log] [blame] [edit]
package cdp
import (
"github.com/mafredri/cdp/internal/errors"
)
// ErrorCause returns the underlying cause for this error, if possible.
// If err does not implement causer.Cause(), then err is returned.
func ErrorCause(err error) error { return errors.Cause(err) }