|
123456789101112131415161718 |
- /*
- * 版权属于:yitter(yitter@126.com)
- * 代码编辑:guoyahao
- * 代码修订:yitter
- * 开源地址:https://gitee.com/yitter/idgenerator
- */
- package idgen
-
- import "fmt"
-
- type IdGeneratorException struct {
- message string
- error error
- }
-
- func (e IdGeneratorException) IdGeneratorException(message ...interface{}) {
- fmt.Println(message)
- }
|