GoCollections/exceptions/ElementNotFound.go
2022-03-23 10:15:18 +08:00

17 lines
343 B
Go

package exceptions
type ElementNotFoundException struct {
RuntimeException
}
func NewElementNotFoundException(message any, config *ExceptionConfig) *ElementNotFoundException {
config.AddSkipStack(1)
return &ElementNotFoundException{
NewRuntimeException(
message,
"exception caused ElementNotFoundException:",
config,
),
}
}