/******************************************************************************* * Třída NotEnoughSeatsException * * @author Tomáš Pitner * @version 1.00, 10.8.2005 */ public class NotEnoughSeatsException extends CarException { /*************************************************************************** * */ public NotEnoughSeatsException(Car c) { super(c); } public String getMessage() { return "There is not enough seats in the "+car; } }