source: src/main/java/edu/gjoko/schedlr/exceptions/BlockingTimeException.java@ 950fa0d

Last change on this file since 950fa0d was 950fa0d, checked in by Gjoko Kostadinov <gjoko.kostadinov@…>, 13 months ago

Periodic update

  • Property mode set to 100644
File size: 275 bytes
Line 
1package edu.gjoko.schedlr.exceptions;
2
3public class BlockingTimeException extends RuntimeException {
4
5 public static final String MESSAGE = "The selected dates are overlapping with another appointment";
6 public BlockingTimeException() {
7 super(MESSAGE);
8 }
9}
Note: See TracBrowser for help on using the repository browser.