GoCollections/main.go

8 lines
191 B
Go
Raw Normal View History

2021-05-20 17:32:35 +08:00
package main
2022-03-31 01:22:30 +08:00
import "github.com/tursom/GoCollections/exceptions"
2021-05-20 17:32:35 +08:00
func main() {
2022-03-31 01:22:30 +08:00
exceptions.NewRuntimeException("test2", exceptions.DefaultExceptionConfig().SetCause(1)).PrintStackTrace()
2021-05-20 17:32:35 +08:00
}