Author: echatellier Date: 2010-11-18 09:40:53 +0100 (Thu, 18 Nov 2010) New Revision: 310 Url: http://nuiton.org/repositories/revision/nuiton-widgets/310 Log: Remove DatePicker (use swingx one) Removed: trunk/src/main/java/org/nuiton/widget/InvalidDateException.java Deleted: trunk/src/main/java/org/nuiton/widget/InvalidDateException.java =================================================================== --- trunk/src/main/java/org/nuiton/widget/InvalidDateException.java 2010-11-18 08:39:36 UTC (rev 309) +++ trunk/src/main/java/org/nuiton/widget/InvalidDateException.java 2010-11-18 08:40:53 UTC (rev 310) @@ -1,52 +0,0 @@ -/* - * #%L - * Graphical Widget - * - * $Id$ - * $HeadURL$ - * %% - * Copyright (C) 2004 - 2010 CodeLutin - * %% - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Lesser Public License for more details. - * - * You should have received a copy of the GNU General Lesser Public - * License along with this program. If not, see - * <http://www.gnu.org/licenses/lgpl-3.0.html>. - * #L% - */ -package org.nuiton.widget; - -@Deprecated -public class InvalidDateException extends Exception { - - private static final long serialVersionUID = 1L; - - public InvalidDateException() { - super(); - // TODO Auto-generated constructor stub - } - - public InvalidDateException(String message) { - super(message); - // TODO Auto-generated constructor stub - } - - public InvalidDateException(String message, Throwable cause) { - super(message, cause); - // TODO Auto-generated constructor stub - } - - public InvalidDateException(Throwable cause) { - super(cause); - // TODO Auto-generated constructor stub - } - -}