1
0
mirror of synced 2026-04-15 12:58:40 +08:00
Files
SnowFlake-IdGenerator/Go/source/yitidgen/contract/IdGeneratorException.go
zhouzj ffb9978f07 AddGo
2021-03-19 22:14:50 +08:00

13 lines
202 B
Go

package contract
import "fmt"
type IdGeneratorException struct {
message string
error error
}
func (e IdGeneratorException) IdGeneratorException(message ...interface{}) {
fmt.Println(message)
}