// Package constants define constant variable package constants import "errors" var ( // ErrUUIDFromCheckT1 define error of check uuid from value failed in uuid from change type ErrUUIDFromCheckT1 = errors.New("in uuid from change type, value of new uuid_from is equal value of old uuid_from") // ErrUUIDToCheckT1 define error of check uuid to value failed in uuid from change type ErrUUIDToCheckT1 = errors.New("in uuid from change type, value of new uuid_to is not equal value of old uuid_to") // ErrUUIDFromCheckT2 define error of check uuid from value failed in uuid to change type ErrUUIDFromCheckT2 = errors.New("in uuid to change type, value of new uuid_from is not equal value of old uuid_from") // ErrUUIDToCheckT2 define error of check uuid to value failed in uuid to change type ErrUUIDToCheckT2 = errors.New("in uuid to change type, value of new uuid_to is equal value of old uuid_to") // ErrUUIDFromCheckT3 define error of check uuid from value failed in uuid add change type ErrUUIDFromCheckT3 = errors.New("in uuid add change type, value of old uuid_from is not empty") // ErrUUIDToCheckT3 define error of check uuid to value failed in uuid add change type ErrUUIDToCheckT3 = errors.New("in uuid add change type, value of old uuid_to is not empty") )