Exception: MxxRu::UnsupportedTargetTypeEx

Inherits:
Ex
  • Object
show all
Defined in:
lib/mxx_ru/ex.rb

Overview

Exception, thrown if unknown target type is detected.

Instance Method Summary collapse

Constructor Details

#initialize(target_class, target_type) ⇒ UnsupportedTargetTypeEx

Returns a new instance of UnsupportedTargetTypeEx.



67
68
69
70
# File 'lib/mxx_ru/ex.rb', line 67

def initialize( target_class, target_type )
  super( "Unsupported target type '#{target_type}'" +
    " in '#{target_class}'" )
end