class SimpleUtilities::NoFileExistsError

Test

Public Class Methods

new(path) click to toggle source
Calls superclass method
# File lib/simple_utilities/exceptions/file_methods_exception.rb, line 15
def initialize(path)
  message = "No file exists for the given path: #{path}"
  super(message)
end