Package

com.github.mehmetakiftutuncu.errors

exceptions

Permalink

package exceptions

Visibility
  1. Public
  2. All

Type Members

  1. case class HasNoErrorsException[V](maybe: Maybe[V]) extends NoSuchElementException with Product with Serializable

    Permalink

    A custom exception to be thrown when trying to access the errors in a com.github.mehmetakiftutuncu.errors.Maybe when it actually contains a value, not an com.github.mehmetakiftutuncu.errors.Errors

    A custom exception to be thrown when trying to access the errors in a com.github.mehmetakiftutuncu.errors.Maybe when it actually contains a value, not an com.github.mehmetakiftutuncu.errors.Errors

    V

    Type of the value in com.github.mehmetakiftutuncu.errors.Maybe

    maybe

    com.github.mehmetakiftutuncu.errors.Maybe on which the errors are tried to be accessed

  2. case class HasNoValueException[V](maybe: Maybe[V]) extends NoSuchElementException with Product with Serializable

    Permalink

    A custom exception to be thrown when trying to access the value in a com.github.mehmetakiftutuncu.errors.Maybe when it actually contains com.github.mehmetakiftutuncu.errors.Errors, not a value

    A custom exception to be thrown when trying to access the value in a com.github.mehmetakiftutuncu.errors.Maybe when it actually contains com.github.mehmetakiftutuncu.errors.Errors, not a value

    V

    Type of the value in com.github.mehmetakiftutuncu.errors.Maybe

    maybe

    com.github.mehmetakiftutuncu.errors.Maybe on which the value is tried to be accessed

Ungrouped