class Sailpoint::Helpers::AuthenticationException

Used to generate an Exception error hen invalid credentails have been supplied

Attributes

data[R]

Public Class Methods

new(data = 'An API Authentication error has occured.') click to toggle source

Used to generate an ExceptionError message when Authenication has failed @param data [String] - The message in which you wish to send to STDOUT for the exception error

Calls superclass method
# File lib/sailpoint/helpers.rb, line 17
def initialize(data = 'An API Authentication error has occured.')
  super
  @data = data
end

Public Instance Methods

message() click to toggle source

Specify the attribute in which to push to STDOUT when generating a Ruby ExceptionError

# File lib/sailpoint/helpers.rb, line 23
def message
  @data
end