TaskAlreadyExistsException.java

package hhn.temp.project.expections;

public class TaskAlreadyExistsException extends RuntimeException {

  public TaskAlreadyExistsException(String message) {
    super(message);
  }
}