class SimpleUtilities::FormatNotMatchError

Test

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/simple_utilities/exceptions/file_methods_exception.rb, line 7
def initialize
  message = 'Both files should be of same format to merge.'
  super(message)
end