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

12 lines
328 B
Go

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