Method: LeanTesting::SDKMissingArgException#initialize
- Defined in:
- lib/Exception/SDKMissingArgException.rb
#initialize(message = nil) ⇒ SDKMissingArgException
Returns a new instance of SDKMissingArgException.
4 5 6 7 8 9 10 11 12 13 14 |
# File 'lib/Exception/SDKMissingArgException.rb', line 4 def initialize( = nil) @baseMessage = 'Missing argument' if ! = @baseMessage else = @baseMessage + ' `' + + '`' end super end |