func CheckError()

in SAW/proof/common/utility.go [21:25]


func CheckError(e error) {
	if e != nil {
		log.Fatal(e)
	}
}