class ZipContainer::ReservedNameClashError
This error is raised when a clash occurs with a reserved or managed name.
Public Class Methods
Source
# File lib/zip-container/errors.rb, line 79 def initialize(name) super("'#{name}' is reserved for internal use in this ZipContainer.") end
Create a new ReservedNameClashError
with the name of the clash supplied.
Calls superclass method