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

12 lines
323 B
Go

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