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