errors.go 238 B

123456789
  1. package system
  2. import "github.com/uozi-tech/cosy"
  3. // System error definitions
  4. var (
  5. e = cosy.NewErrorScope("system")
  6. ErrInstallTimeout = e.New(40308, "installation is not allowed after 10 minutes of system startup")
  7. )