lib/cascade/exceptions/unsupported_component.rb in cascade-rb-0.2.3 vs lib/cascade/exceptions/unsupported_component.rb in cascade-rb-0.3.0
- old
+ new
@@ -1,7 +1,9 @@
+# frozen_string_literal: true
+
module Cascade
class UnsupportedComponent < ::StandardError
- MESSAGE = "You should provide data provider that respond to `each` method"
+ MESSAGE = 'You should provide data provider that respond to `each` method'
def initialize(msg = MESSAGE)
super
end
end