Sha256: adea9ffa0c12c1e9cfe41d53db08b26ab2ef96429c03f3643aa8087101d84efb

Contents?: true

Size: 596 Bytes

Versions: 1

Compression:

Stored size: 596 Bytes

Contents

# frozen_string_literal: true

module Domainic
  module Attributer
    # Base error class for all Attributer-related errors
    #
    # This class serves as the foundation for Attributer's error hierarchy, allowing
    # for specific error types to be caught and handled appropriately. All custom
    # errors within the Attributer system should inherit from this class to maintain
    # a consistent error handling pattern
    #
    # @api private
    # @!visibility private
    # @author {https://aaronmallen.me Aaron Allen}
    # @since 0.2.0
    class Error < StandardError
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
domainic-attributer-0.2.0 lib/domainic/attributer/errors/error.rb