Index: topia2/src/java/org/codelutin/topia/TopiaVetoException.java diff -u /dev/null topia2/src/java/org/codelutin/topia/TopiaVetoException.java:1.1 --- /dev/null Thu Jan 5 04:51:28 2006 +++ topia2/src/java/org/codelutin/topia/TopiaVetoException.java Thu Jan 5 04:51:23 2006 @@ -0,0 +1,76 @@ +/* *##% + * Copyright (C) 2006 + * Code Lutin, Cédric Pineau, Benjamin Poussin + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * 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 Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + *##%*/ + +/* * + * TopiaVetoException.java + * + * Created: 5 janv. 2006 00:47:51 + * + * @author poussin + * @version $Revision: 1.1 $ + * + * Last update: $Date: 2006/01/05 04:51:23 $ + * by : $Author: bpoussin $ + */ + +package org.codelutin.topia; + + +/** + * @author poussin + * + */ + +public class TopiaVetoException extends RuntimeException { + + /** */ + private static final long serialVersionUID = 6809613247516488399L; + + /** + * + */ + public TopiaVetoException() { + super(); + } + + /** + * @param message + */ + public TopiaVetoException(String message) { + super(message); + } + + /** + * @param message + * @param cause + */ + public TopiaVetoException(String message, Throwable cause) { + super(message, cause); + } + + /** + * @param cause + */ + public TopiaVetoException(Throwable cause) { + super(cause); + } + +} + +