OAuthException.this - multiple declarations

Function OAuthException.this

Creates a new instance of OAuthException representing a client side error condition.

this (
  string msg,
  string file = __FILE__,
  ulong line = cast(ulong)__LINE__,
  object.Throwable next = null
) pure nothrow @nogc @safe;

Parameters

NameDescription
msg human-readable error message.
file (implicit)
line (implicit)
next (implicit)

Function OAuthException.this

Creates a new instance of OAuthException based on an error response from the authentication server.

this (
  vibe.data.json.Json errorResponse,
  string file = __FILE__,
  ulong line = cast(ulong)__LINE__,
  object.Throwable next = null
) @safe;

Parameters

NameDescription
errorResponse error response from the authentication server.
file (implicit)
line (implicit)
next (implicit)