p

faunadb

errors

package errors

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class BadRequestException(response: Option[QueryErrorResponse], message: String) extends FaunaException with Product with Serializable

    An exception thrown if FaunaDB cannot evaluate a query.

  2. class FaunaException extends Exception
  3. case class InternalException(response: Option[QueryErrorResponse], message: String) extends FaunaException with Product with Serializable

    An exception thrown if FaunaDB responds with an HTTP 500.

    An exception thrown if FaunaDB responds with an HTTP 500. Such errors represent an internal failure within the database.

  4. case class NotFoundException(response: Option[QueryErrorResponse], message: String) extends FaunaException with Product with Serializable

    An exception thrown if FaunaDB responds with an HTTP 404 for non-query endpoints.

  5. case class PermissionDeniedException(response: Option[QueryErrorResponse], message: String) extends FaunaException with Product with Serializable

    An exception thrown if FaunaDB responds with an HTTP 403.

  6. case class StreamingException(message: String) extends FaunaException with Product with Serializable
  7. case class UnauthorizedException(response: Option[QueryErrorResponse], message: String) extends FaunaException with Product with Serializable

    An exception thrown if FaunaDB responds with an HTTP 401.

  8. case class UnavailableException(response: Option[QueryErrorResponse], message: String, cause: Throwable) extends FaunaException with Product with Serializable

    An exception thrown if FaunaDB responds with an HTTP 503.

    An exception thrown if FaunaDB responds with an HTTP 503. Such errors represent that the FaunaDB service was unavailable.

  9. case class UnknownException(response: Option[QueryErrorResponse], message: String, cause: Throwable) extends FaunaException with Product with Serializable

Value Members

  1. object FaunaException extends Serializable

Ungrouped