Trait/Object

busymachines.core.exceptions

FailureID

Related Docs: object FailureID | package exceptions

Permalink

trait FailureID extends AnyRef

THERE'S NOTHING WRONG WITH FAILURE!

There, now that that got your attention, let me elaborate on the intention of these types.

Basically, they are a semantically richer way of expressing common failures when developing backend-servers.

Furthermore, these exceptions being part of the core of the application —by reading this file— you have not gauged their full potentiality, yet. The intention is to give richer interpretations to these "common failures" in other busymachines-commons module than could be done to the likes of Throwable.

The reason why there is a trait FailureMessage, and some types that extend Exception is that the potentiality of these types can be achieved either through a monad stack approach to building applications, or to a more vanilla scala approach, respectively.

There are two quasi-parallel hierarchies of failures: I) the FailureMessage representing one single failure II) the FailureMessages representing a container of multiple FailureMessage. The intended use of the FailureMessages.id (and other ones inherited from FailureMessage is to signal the general "context" within which the specific FailureMessages.messages where gathered.

There are the following semantically meaningful exceptions (with their plural counterparts elided) that you ought to be using: - NotFoundFailure - SemanticFailures.NotFound - UnauthorizedFailure - SemanticFailures.Unauthorized - ForbiddenFailure - SemanticFailures.Forbidden - DeniedFailure - SemanticFailures.Denied - InvalidInputFailure - SemanticFailures.InvalidInput - ConflictFailure - SemanticFailures.Conflict

Each described in the SemanticFailures docs.

These definitions are also quite flexible enough to allow multiple styles of active development:

1) The quick and dirty, "better than RuntimeException" style. Basically, you just wind up using the default constructors on the companion object, or the companion object itself

//I know I am in the middle of my domain problem, and I know that here
//I can fail because "I did not find something", so I just quickly use:

option.getOrElse(throw NotFoundFailure)
option.getOrElse(throw NotFoundFailure("this specific option, instead of generic"))

This style should be kept just that, "quick and dirty". After the first iteration of the implementation these failures should be replaced by the ones in style 2)

2) The long term style. Where you subclass NotFoundFailure into a more meaningful exception specific to your problem domain, supply some context via the parameters, and assign it an (preferably) application-wide unique FailureID.

object RevolutionaryDomainFailures {
  case object CannotBeDone extends FailureID { val name = "rd_001" }
  //... and many others
}

case class SolutionNotFoundFailure(problem: String) extends NotFoundFailure(
  s"Solution to problem $problem not found."
) {
  override def id: FailureID = RevolutionaryDomainFailures.CannotBeDone

  override def parameters: Parameters = Map(
    "problem" -> problem
  )
}

object Main {
  //...
  solutionToPVSNP.getOrElse(throw SolutionNotFoundFailure("P vs. NP"))
  solutionToHaltingProblem.getOrElse(throw SolutionNotFoundFailure("Halting Problem"))
  //how refined you want your failures, that's up to you.
}
Since

31 Jul 2017

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FailureID
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def name: String

    Permalink

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  14. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  16. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped