package com.aemreunal.exception.scenario; /* * *********************** * * Copyright (c) 2015 * * * * This code belongs to: * * * * @author Ahmet Emre Ünal * * S001974 * * * * aemreunal@gmail.com * * emre.unal@ozu.edu.tr * * * * aemreunal.com * * *********************** * */ public class BeaconDoesNotHaveScenarioException extends NullPointerException { public BeaconDoesNotHaveScenarioException(Long beaconId, Long scenarioId) { super("The beacon with ID " + beaconId + " is not part of scenario with ID " + scenarioId + ". No modifications have been made."); } }