# frozen_string_literal: true module EmailAction class Error < ::StandardError end class Base def process(email) fail NotImplementedError end end end