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

inputvalidator.Error.scala Maven / Gradle / Ivy

The newest version!
package inputvalidator

trait Error {

  def name: String
  def messageParams: Seq[Any] = Nil

  override def toString(): String = {
    "Error(name = " + name + ", messageParams = " + messageParams + ")"
  }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy