Exception: LeanTesting::SDKMissingArgException
- Inherits:
-
SDKException
- Object
- Exception
- SDKException
- LeanTesting::SDKMissingArgException
- Defined in:
- lib/Exception/SDKMissingArgException.rb
Instance Method Summary collapse
-
#initialize(message = nil) ⇒ SDKMissingArgException
constructor
A new instance of SDKMissingArgException.
Methods inherited from SDKException
Constructor Details
#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 |