GoCollections/exceptions/ElementNotFound.go
2021-05-21 17:35:02 +08:00

17 lines
335 B
Go

package exceptions
type ElementNotFoundException struct {
RuntimeException
}
func NewElementNotFoundException(message interface{}, getStackTrace bool) ElementNotFoundException {
return ElementNotFoundException{
NewRuntimeException(
message,
"exception caused ElementNotFoundException:",
getStackTrace,
nil,
),
}
}