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