13 lines
202 B
Go
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)
|
|
}
|