GoCollections/exceptions/ElementNotFound.go
2022-03-28 18:19:05 +08:00

16 lines
335 B
Go

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