lib/dwc_archive/errors.rb in dwc-archive-1.1.1 vs lib/dwc_archive/errors.rb in dwc-archive-1.1.2

- old
+ new

@@ -1,13 +1,21 @@ # frozen_string_literal: true class DarwinCore class Error < RuntimeError; end + class FileNotFoundError < Error; end + class UnpackingError < Error; end + class InvalidArchiveError < Error; end + class CoreFileError < Error; end + class ExtensionFileError < Error; end + class GeneratorError < Error; end + class ParentNotCurrentError < Error; end + class EncodingError < Error; end end