package edu.gjoko.schedlr.exceptions; public class BlockingTimeException extends RuntimeException { public static final String MESSAGE = "Error! The selected dates are overlapping with another appointment."; public BlockingTimeException() { super(MESSAGE); } }