Skip to content

Instantly share code, notes, and snippets.

@kubukoz
Created May 16, 2018 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kubukoz/5af190ef9521e200586f3cf53d1e9b2f to your computer and use it in GitHub Desktop.
Save kubukoz/5af190ef9521e200586f3cf53d1e9b2f to your computer and use it in GitHub Desktop.
the description for this gist
sealed trait PVError extends Product with Serializable
object PVError {
case object NoIp extends PVError
case object AlreadyTracked extends PVError
case object PageNotFound extends PVError
case object InvalidTimestamp extends PVError
//helper functions to upcast easily
val noIp: PVError = NoIp
val alreadyTracked: PVError = AlreadyTracked
val pageNotFound: PVError = PageNotFound
val invalidTimestamp: PVError = InvalidTimestamp
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment