class ADAL::UserCredential::UnsupportedAccountTypeError

ADAL only supports flows for managed and federated users.

Public Class Methods

new(account_type) click to toggle source
Calls superclass method
# File lib/adal/user_credential.rb, line 48
def initialize(account_type)
  super("Unsupported account type for authentication: #{account_type}.")
end