/******************************************************************************* * Třída NotInTheCarException * * @author Tomáš Pitner * @version 1.00, 10.8.2005 */ public class NotInTheCarException extends CarException { private Person person; /*************************************************************************** * */ public NotInTheCarException(Person p, Car c) { super(c); person = p; } public String getMessage() { return person.toString() + " is not in the "+car; } }