View Source BrowseyHttp.TooManyRedirectsException exception (BrowseyHttp v0.0.7)

The error returned when we exceed the maximum number of redirects while loading a resource.

Summary

Types

@type t() :: %BrowseyHttp.TooManyRedirectsException{
  __exception__: true,
  max_redirects: non_neg_integer(),
  message: String.t(),
  uri: URI.t()
}

Functions

@spec new(URI.t(), non_neg_integer()) :: t()