github.com/tinygo-org/tinygo@v0.31.3-0.20240404173401-90b0bf646c27/src/runtime/error.go (about) 1 package runtime 2 3 // The Error interface identifies a run time error. 4 type Error interface { 5 error 6 7 RuntimeError() 8 }