Files
GoCollections/exceptions/OperationNotSupportedException.go
2021-05-21 11:25:53 +08:00

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,
),
}
}