GoCollections/exceptions/IndexOutOfBoundError.go
2022-03-31 01:22:30 +08:00

23 lines
529 B
Go

package exceptions
type IndexOutOfBound struct {
RuntimeException
}
func NewIndexOutOfBound(message string, config *ExceptionConfig) *IndexOutOfBound {
return &IndexOutOfBound{
NewRuntimeException(message, config.AddSkipStack(1).SetExceptionName("IndexOutOfBound")),
}
}
func CatchIndexOutOfBound[T any](f func() T, config *ExceptionConfig) (r T, err Exception) {
defer func() {
r := recover()
if r != nil {
err = NewIndexOutOfBound("", config.AddSkipStack(3).SetCause(PackageAny(r)))
}
}()
r = f()
return
}