Sometimes it is needed to have a default behavior for nodes that do not match any existing patterns: ```java handler .or("essay", this::printEssay) .or("article", this::printArticle) .default(this::reportError); ```