This exception is raised when a clash occurs with a reserved or managed name.
Create a new ReservedNameClashError with the name of the clash supplied.
# File lib/zip-container/exceptions.rb, line 65 def initialize(name) super("'#{name}' is reserved for internal use in this ZipContainer file.") end