Class: Autocad::ExistingFile

Inherits:
Error
  • Object
show all
Defined in:
lib/autocad/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(path) ⇒ ExistingFile

Returns a new instance of ExistingFile.



41
42
43
44
# File 'lib/autocad/errors.rb', line 41

def initialize(path)
  msg = "File at path #{path} already exists"
  super(msg)
end