GoCollections/exceptions/OperationNotSupportedException.go

17 lines
365 B
Go

package exceptions
type OperationNotSupportedException struct {
RuntimeException
}
func NewOperationNotSupportedException(message interface{}, getStackTrace bool) OperationNotSupportedException {
return OperationNotSupportedException{
NewRuntimeException(
message,
"exception caused OperationNotSupportedException:",
getStackTrace,
nil,
),
}
}