v0.0.528
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 4m38s

This commit is contained in:
Mike Schwörer 2024-10-07 17:20:40 +02:00
parent ec672fbd49
commit b8cb989e54
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
2 changed files with 15 additions and 2 deletions

View File

@ -111,3 +111,16 @@ func OriginalError(e error) error {
return bmerr return bmerr
} }
func UniqueID(v error) *string {
if v == nil {
return nil
}
//goland:noinspection GoTypeAssertionOnErrors
if verr, ok := v.(*ExErr); ok {
return &verr.UniqueID
}
return nil
}

View File

@ -1,5 +1,5 @@
package goext package goext
const GoextVersion = "0.0.527" const GoextVersion = "0.0.528"
const GoextVersionTimestamp = "2024-10-07T17:19:30+0200" const GoextVersionTimestamp = "2024-10-07T17:20:40+0200"