/******************************************************************************* * Třída CarException * * @author Tomáš Pitner * @version 1.00, 10.8.2005 */ public class CarException extends Exception { protected Car car; /*************************************************************************** * */ public CarException(Car c) { car = c; } }