GoCollections/exceptions/ElementNotFound.go
2021-05-21 11:14:07 +08:00

17 lines
332 B
Go

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