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 65
def initialize(name)
  super("'#{name}' is reserved for internal use in this ZipContainer file.")
end