You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

IdGeneratorException.go 355 B

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
123456789101112131415161718
  1. /*
  2. * 版权属于:yitter(yitter@126.com)
  3. * 代码编辑:guoyahao
  4. * 代码修订:yitter
  5. * 开源地址:https://github.com/yitter/idgenerator
  6. */
  7. package idgen
  8. import "fmt"
  9. type IdGeneratorException struct {
  10. message string
  11. error error
  12. }
  13. func (e IdGeneratorException) IdGeneratorException(message ...interface{}) {
  14. fmt.Println(message)
  15. }