github.com/tursom/GoCollections@v0.3.10/exceptions/ExceptionConfig.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 exceptions
     8  
     9  import "github.com/tursom/GoCollections/lang"
    10  
    11  type ExceptionConfig = lang.ExceptionConfig
    12  
    13  func Cfg() *ExceptionConfig {
    14  	return DefaultExceptionConfig()
    15  }
    16  
    17  func DefaultExceptionConfig() *ExceptionConfig {
    18  	return lang.DefaultExceptionConfig()
    19  }