Exception: NameLengthError

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

Instance Method Summary collapse

Constructor Details

#initialize(len) ⇒ NameLengthError

Returns a new instance of NameLengthError.



18
19
20
# File 'lib/errors.rb', line 18

def initialize(len)
  super "File name too long (#{len} chars)."
end