# frozen_string_literal: true

module Togglefy
  # The Error class is the base class for all custom exceptions in the Togglefy gem.
  # It inherits from StandardError to provide a consistent error hierarchy.
  class Error < StandardError; end
end