IdGeneratorException.go 357 字节
Newer Older
Z
AddGo  
zhouzj 已提交
1 2 3 4 5 6
/*
 * 版权属于:yitter(yitter@126.com)
 * 代码编辑:guoyahao
 * 代码修订:yitter
 * 开源地址:https://gitee.com/yitter/idgenerator
 */
Z
AddGo  
zhouzj 已提交
7 8 9 10 11 12 13 14 15 16 17 18
package contract

import "fmt"

type IdGeneratorException struct {
	message string
	error   error
}

func (e IdGeneratorException) IdGeneratorException(message ...interface{}) {
	fmt.Println(message)
}