package com.shekhargulati.java8_tutorial.ch05; public class TaskNotFoundException extends RuntimeException { public TaskNotFoundException(String id) { super("No task found for id: " + id); } }