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

java.time.Preconditions.scala Maven / Gradle / Ivy

The newest version!
package java.time

private[time] object Preconditions {
  // Like scala.Predef.require, but throws a DateTimeException.
  def requireDateTime(requirement: Boolean, message: => Any): Unit = {
    if (!requirement)
      throw new DateTimeException(message.toString)
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy