p

busymachines.core

exceptions

package exceptions

Since

31 Jul 2017

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

Type Members

  1. abstract class ConflictFailure extends FailureBase with Conflict

    See scaladoc at top of file for general picture.

    See scaladoc at top of file for general picture.

    See SemanticFailures.Conflict for intended use.

  2. abstract class DeniedFailure extends FailureBase with Denied

    See scaladoc at top of file for general picture.

    See scaladoc at top of file for general picture.

    See SemanticFailures.Denied for intended use.

  3. abstract class Error extends Exception with FailureMessage with ErrorMessage
  4. trait ErrorMessage extends FailureMessage

    THERE'S EVERYTHING WRONG WITH ERRORS!

    THERE'S EVERYTHING WRONG WITH ERRORS!

    The more meaningful design decisions are the ones made in failures.scala file detailing the definitions of various busymachines.core.exceptions.FailureMessage

    Since the types here are a minority, the design here emulates the one from the other more commonly used file.

  5. abstract class FailureBase extends Exception with FailureMessage

    Should be extended sparingly outside of this file.

    Should be extended sparingly outside of this file.

    Most likely you need to extend one of the other cases.

  6. trait FailureID extends AnyRef

    THERE'S NOTHING WRONG WITH FAILURE!

    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 modules 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 is a hierarchy of FailureMessage representing one single failure, in richer details.

    FailureMessages represents a container of multiple FailureMessages. The intended use of the FailureMessages.id is to signal the general "context" within which the specific FailureMessages.messages where gathered. While each specific FailureMessage contains information about what went wrong.

    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(
      "Cannot find solution to problem:" + problem
    ) {
      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

  7. trait FailureMessage extends AnyRef
  8. trait FailureMessages extends FailureMessage

    FailureMessage counterpart, but for situations when multiple such messages can occur.

    FailureMessage counterpart, but for situations when multiple such messages can occur.

    FailureMessages#id, and FailureMessages#message should be used to convey the general context withing which FailureMessages#messages where gathered.

    Guaranteed to have non-empty FailureMessages

  9. abstract class Failures extends Exception with FailureMessages

    Similar to FailureBase but encapsulate multiple causes.

    Similar to FailureBase but encapsulate multiple causes.

    Primarily used as containers for validation failures.

  10. abstract class ForbiddenFailure extends FailureBase with Forbidden

    See scaladoc at top of file for general picture.

    See scaladoc at top of file for general picture.

    See SemanticFailures.Forbidden for intended use.

  11. abstract class InconsistentStateError extends Error with InconsistentState

    See SemanticErrors.InconsistentState for intended use.

  12. abstract class InvalidInputFailure extends FailureBase with InvalidInput

    See scaladoc at top of file for general picture.

    See scaladoc at top of file for general picture.

    See SemanticFailures.InvalidInput for intended use.

  13. abstract class NotFoundFailure extends FailureBase with NotFound

    See scaladoc at top of file for general picture.

    See scaladoc at top of file for general picture.

    See SemanticFailures.NotFound for intended use.

  14. abstract class UnauthorizedFailure extends FailureBase with Unauthorized

    See scaladoc at top of file for general picture.

    See scaladoc at top of file for general picture.

    See SemanticFailures.Unauthorized for intended use.

Value Members

  1. implicit final def failureMessageParamValueSeqOfStringWrapper(ses: Seq[String]): ParamValue
  2. implicit final def failureMessageParamValueStringWrapper(s: String): ParamValue
  3. object ConflictFailure extends ConflictFailure
  4. object DeniedFailure extends DeniedFailure
  5. object Error extends Error
  6. object FailureBase extends Serializable
  7. object FailureID
  8. object FailureMessage
  9. object FailureMessages
  10. object Failures extends Serializable
  11. object ForbiddenFailure extends ForbiddenFailure
  12. object InconsistentStateError extends InconsistentStateError
  13. object InvalidInputFailure extends InvalidInputFailure
  14. object NotFoundFailure extends NotFoundFailure
  15. object SemanticErrors
  16. object SemanticFailures

    Marker traits, so that both the FailureBase and Failures can be marked with the same semantic meaning

  17. object UnauthorizedFailure extends UnauthorizedFailure

Inherited from AnyRef

Inherited from Any

Ungrouped