github.com/tursom/GoCollections@v0.3.10/main.go (about) 1 /* 2 * Copyright (c) 2022 tursom. All rights reserved. 3 * Use of this source code is governed by a GPL-3 4 * license that can be found in the LICENSE file. 5 */ 6 7 package main 8 9 import ( 10 _ "github.com/tursom/GoCollections/collections" 11 _ "github.com/tursom/GoCollections/concurrent" 12 _ "github.com/tursom/GoCollections/concurrent/collections" 13 "github.com/tursom/GoCollections/exceptions" 14 _ "github.com/tursom/GoCollections/lang" 15 _ "github.com/tursom/GoCollections/lang/atomic" 16 _ "github.com/tursom/GoCollections/util" 17 ) 18 19 func main() { 20 exceptions.NewRuntimeException("test2", exceptions.DefaultExceptionConfig().SetCause(1)).PrintStackTrace() 21 }