# frozen_string_literal: true module LittleWeasel module Errors # This class describes an error when the method must be overridden. class MustOverrideError < StandardError; end end end