2022-11-25 18:19:33 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022 tursom. All rights reserved.
|
|
|
|
* Use of this source code is governed by a GPL-3
|
|
|
|
* license that can be found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2022-03-21 11:02:41 +08:00
|
|
|
package exceptions
|
|
|
|
|
2022-11-26 14:05:48 +08:00
|
|
|
import "github.com/tursom/GoCollections/lang"
|
|
|
|
|
|
|
|
type ExceptionConfig = lang.ExceptionConfig
|
2022-03-21 11:02:41 +08:00
|
|
|
|
2022-04-02 15:25:35 +08:00
|
|
|
func Cfg() *ExceptionConfig {
|
|
|
|
return DefaultExceptionConfig()
|
|
|
|
}
|
|
|
|
|
2022-03-21 11:02:41 +08:00
|
|
|
func DefaultExceptionConfig() *ExceptionConfig {
|
2022-11-26 14:05:48 +08:00
|
|
|
return lang.DefaultExceptionConfig()
|
2022-03-31 01:22:30 +08:00
|
|
|
}
|