package ytdl
type Error struct {
stderr string
child error
}
func (e *Error) Error() string {
return e.child.Error()
func (e *Error) Stderr() string {
return e.stderr