package com.github.setial.intellijjavadocs.exception; /** * The type Not found element exception. * * @author Sergey Timofiychuk */ public class NotFoundElementException extends RuntimeException { /** * Instantiates a new Not found element exception. * * @param message the message */ public NotFoundElementException(String message) { super(message); } }