AccountIsLockedException constructor

AccountIsLockedException(
  1. String message,
  2. Uri accountUnlockUrl,
  3. Exception innerException
)
Initializes a new instance of the Error message text. URL for client to visit to unlock account. Inner exception.

Implementation

AccountIsLockedException(
    String message, Uri accountUnlockUrl, Exception innerException)
    : super(message, innerException) {
  this.AccountUnlockUrl = accountUnlockUrl;
}