Exception: MxxRu::BinaryLibraryTypeConflictEx

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

Overview

Exception for the case where conflict of BinaryLibrary usage detected.

Conflict detected if STATIC and SHARED library with same name specified for one target.

Instance Method Summary collapse

Constructor Details

#initialize(target_name, library_name) ⇒ BinaryLibraryTypeConflictEx

Returns a new instance of BinaryLibraryTypeConflictEx.



100
101
102
103
# File 'lib/mxx_ru/binary_library.rb', line 100

def initialize( target_name, library_name )
  super( "Binary library conflict with library '#{library_name}' for " +
      "target '#{target_name}'" )
end