com.twitter.finagle.builder.Common.scala Maven / Gradle / Ivy
The newest version!
package com.twitter.finagle.builder
/**
* Used by builder to throw exceptions if the specification is incomplete.
* {{{
* if (!_codec.isDefined)
* throw new IncompleteSpecification("No codec was specified")
* }}}
*/
class IncompleteSpecification(message: String) extends Exception(message)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy