tinygo/src/runtime/error.go
Cornel 720a54a0fe
extend stdlib to allow import of more packages (#1099)
* stdlib: extend stdlib to allow import of more packages
2020-06-23 11:56:28 +02:00

8 строки
118 Б
Go

package runtime
// The Error interface identifies a run time error.
type Error interface {
error
RuntimeError()
}