source: src/main/java/edu/gjoko/schedlr/exceptions/BlockingTimeException.java@ 77205be

Last change on this file since 77205be was 77205be, checked in by gjoko kostadinov <gjokokostadinov@…>, 6 months ago

Add entire code

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