v0.0.528
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 4m38s
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 4m38s
This commit is contained in:
parent
ec672fbd49
commit
b8cb989e54
@ -111,3 +111,16 @@ func OriginalError(e error) error {
|
||||
|
||||
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
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
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"
|
||||
|
Loading…
Reference in New Issue
Block a user