Exception: LeanTesting::SDKInvalidArgException
- Inherits:
-
SDKException
- Object
- Exception
- SDKException
- LeanTesting::SDKInvalidArgException
- Defined in:
- lib/Exception/SDKInvalidArgException.rb
Instance Method Summary collapse
-
#initialize(message = nil) ⇒ SDKInvalidArgException
constructor
A new instance of SDKInvalidArgException.
Methods inherited from SDKException
Constructor Details
#initialize(message = nil) ⇒ SDKInvalidArgException
Returns a new instance of SDKInvalidArgException.
4 5 6 7 8 9 10 11 12 13 14 |
# File 'lib/Exception/SDKInvalidArgException.rb', line 4 def initialize( = nil) @baseMessage = 'Invalid argument' if ! = @baseMessage else = @baseMessage + ': ' + end super end |