All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.databricks.labs.automl.exceptions.BooleanFieldFillException.scala Maven / Gradle / Ivy

package com.databricks.labs.automl.exceptions

case class BooleanFieldFillException(
  private val fieldName: String,
  private val conversionMode: String,
  private val allowableConversionModes: Array[String],
  cause: Throwable = None.orNull
) extends RuntimeException(
      s"The boolean fill type " +
        s"specified: $conversionMode is not in the allowable list of supported models: ${allowableConversionModes
          .mkString(", ")} for field $fieldName",
      cause
    )




© 2015 - 2025 Weber Informatics LLC | Privacy Policy