Sha256: eac9f473c151a61af9200c0d992efa89bb365d1088bf0e2b71ec062213cb44fc

Contents?: true

Size: 727 Bytes

Versions: 7

Compression:

Stored size: 727 Bytes

Contents

# frozen_string_literal: true

module Roro
  class Error < StandardError; end
  class CatalogError < Error; end
  class StoryError < Error; end

  module Catalog
    class Keys < Error; end
    class Empty < Error; end
    class Story < Error; end
    class OutlineError < Error; end
    class StoryError < Error; end
    class KeyError < Error; end
    class ContentKeyError < Error; end
    class ContentError < Error; end
    class ContentStructureError < Error; end
  end

  module Crypto
    class KeyError             < Error; end

    class EnvironmentError     < Error; end

    class DataDestructionError < Error; end

    class EncryptableError     < Error; end

    class DecryptableError     < Error; end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
roro-0.3.33 lib/roro/error.rb
roro-0.3.30 lib/roro/error.rb
roro-0.3.28 lib/roro/error.rb
roro-0.3.27 lib/roro/error.rb
roro-0.3.25 lib/roro/error.rb
roro-0.3.24 lib/roro/error.rb
roro-0.3.23 lib/roro/error.rb