GoCollections/exceptions/OperationNotSupportedException.go

13 lines
400 B
Go

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