class Sailpoint::Helpers
Public Class Methods
print_exception(msg = '')
click to toggle source
Used to printout a [Red] message to STDOUT in case you want to print a message without causing an Exception. @param msg [String] - The excpetion message that should be printed out
# File lib/sailpoint/helpers.rb, line 7 def self.print_exception(msg = '') puts "\e[31m#{msg}\e[0m" end