in main.go [291:301]
func handleOopsie(c *gin.Context) {
switch c.Query("type") {
case "string":
panic("boom")
case "pkg/errors":
err := errors.New("boom")
panic(errors.Wrap(err, "failure while shaking the room"))
default:
panic(fmt.Errorf("sonic %s", "boom"))
}
}