Files
GoCollections/exceptions/ElementNotFound.go
2022-04-02 15:25:35 +08:00

13 lines
370 B
Go

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