GoCollections/exceptions/OperationNotSupportedException.go
2021-05-21 10:31:49 +08:00

12 lines
338 B
Go

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