Dart API Referencedart:ioRedirectLoopException

RedirectLoopException class

class RedirectLoopException extends RedirectException {
 const RedirectLoopException(List<RedirectInfo> redirects)
     : super("Redirect loop detected", redirects);
}

Extends

HttpException > RedirectException > RedirectLoopException

Constructors

const RedirectLoopException(List<RedirectInfo> redirects) #

const RedirectLoopException(List<RedirectInfo> redirects)
   : super("Redirect loop detected", redirects);

Properties

final String message #

inherited from HttpException
final String message

final List<RedirectInfo> redirects #

inherited from RedirectException
final List<RedirectInfo> redirects

Methods

String toString() #

inherited from HttpException

Returns a string representation of this object.

docs inherited from Object
String toString() => "HttpException: $message";