D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
td-agent
/
embedded
/
lib
/
ruby
/
gems
/
2.1.0
/
gems
/
rubyzip-1.1.7
/
lib
/
zip
/
Filename :
errors.rb
back
Copy
module Zip class Error < StandardError; end class EntryExistsError < Error; end class DestinationFileExistsError < Error; end class CompressionMethodError < Error; end class EntryNameError < Error; end class InternalError < Error; end # Backwards compatibility with v1 (delete in v2) ZipError = Error ZipEntryExistsError = EntryExistsError ZipDestinationFileExistsError = DestinationFileExistsError ZipCompressionMethodError = CompressionMethodError ZipEntryNameError = EntryNameError ZipInternalError = InternalError end