Error.go 131 Bytes
package getWay

type Error struct {
	Code State
}

func ThrowsGetWayErr(code State) {
	if &code != nil {
		panic(Error{code})
	}
}