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