class Dry::Files::NotMemoryFileError
Not a memory file
Raised by the memory adapter (used for testing purposes)
@since 0.1.0 @api public
Public Class Methods
new(path)
click to toggle source
Instantiate a new error
@param path [String] path name
@since 0.1.0 @api public
Calls superclass method
# File lib/dry/files/error.rb, line 115 def initialize(path) super("not a memory file `#{path}'") end