chore: move the go code into a subfolder

This commit is contained in:
Florian Forster
2025-08-05 15:20:32 -07:00
parent 4ad22ba456
commit cd2921de26
2978 changed files with 373 additions and 300 deletions

View File

@@ -0,0 +1,46 @@
package zerrors
import (
"fmt"
)
var (
_ Internal = (*InternalError)(nil)
_ Error = (*InternalError)(nil)
)
type Internal interface {
error
IsInternal()
}
type InternalError struct {
*ZitadelError
}
func ThrowInternal(parent error, id, message string) error {
return &InternalError{CreateZitadelError(parent, id, message)}
}
func ThrowInternalf(parent error, id, format string, a ...interface{}) error {
return ThrowInternal(parent, id, fmt.Sprintf(format, a...))
}
func (err *InternalError) IsInternal() {}
func IsInternal(err error) bool {
_, ok := err.(Internal)
return ok
}
func (err *InternalError) Is(target error) bool {
t, ok := target.(*InternalError)
if !ok {
return false
}
return err.ZitadelError.Is(t.ZitadelError)
}
func (err *InternalError) Unwrap() error {
return err.ZitadelError
}