15 lines
179 B
Go
15 lines
179 B
Go
|
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
|
||
|
}
|