module Codebreaker module Errors class InvalidDifficultyError < StandardError def initialize(msg = 'Invalid difficulty type') super end end end end