Exception: SmsCarrier::NonInferrableCarrierError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/sms_carrier/test_case.rb

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ NonInferrableCarrierError

Returns a new instance of NonInferrableCarrierError.



5
6
7
8
9
# File 'lib/sms_carrier/test_case.rb', line 5

def initialize(name)
  super "Unable to determine the carrier to test from #{name}. " +
    "You'll need to specify it using tests YourCarrier in your " +
    "test case definition"
end