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

mess.DecodingFailure.scala Maven / Gradle / Ivy

The newest version!
package mess

import mess.ast.MsgPack

import scala.util.control.NoStackTrace

sealed trait DecodingFailure extends NoStackTrace

final case class TypeMismatchError(to: String, from: MsgPack) extends DecodingFailure {
  override def getMessage: String = s"cannot decode to $to from ${from.getClass.getSimpleName}."
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy