mirror of
https://github.com/tursom/GoCollections.git
synced 2025-03-14 09:40:50 +08:00
16 lines
486 B
Go
16 lines
486 B
Go
package main
|
|
|
|
import (
|
|
_ "github.com/tursom/GoCollections/collections"
|
|
_ "github.com/tursom/GoCollections/concurrent"
|
|
_ "github.com/tursom/GoCollections/concurrent/collections"
|
|
"github.com/tursom/GoCollections/exceptions"
|
|
_ "github.com/tursom/GoCollections/lang"
|
|
_ "github.com/tursom/GoCollections/lang/atomic"
|
|
_ "github.com/tursom/GoCollections/util"
|
|
)
|
|
|
|
func main() {
|
|
exceptions.NewRuntimeException("test2", exceptions.DefaultExceptionConfig().SetCause(1)).PrintStackTrace()
|
|
}
|