github.com/Microsoft/azure-vhd-utils@v0.0.0-20230613175315-7c30a3748a1b/vhdcore/innererror/innerError.go (about) 1 package innererror 2 3 // InnerErr is an interface satisfied by the error types which has inner error. 4 // 5 type InnerErr interface { 6 GetInnerErr() error 7 }