8 строки
118 Б
Go
8 строки
118 Б
Go
package runtime
|
|
|
|
// The Error interface identifies a run time error.
|
|
type Error interface {
|
|
error
|
|
|
|
RuntimeError()
|
|
}
|