rubyzip/lib/zip/errors.rb

9 lines
251 B
Ruby
Raw Normal View History

module Zip
2014-01-24 17:37:38 +08:00
class Error < StandardError; end
class EntryExistsError < Error; end
class DestinationFileExistsError < Error; end
class CompressionMethodError < Error; end
class EntryNameError < Error; end
class InternalError < Error; end
end