From: <jom...@us...> - 2013-11-07 14:08:07
|
Revision: 1758 http://sourceforge.net/p/jason/svn/1758 Author: jomifred Date: 2013-11-07 14:08:03 +0000 (Thu, 07 Nov 2013) Log Message: ----------- add new type of Exception Added Paths: ----------- trunk/src/jason/NoValueForVarException.java Added: trunk/src/jason/NoValueForVarException.java =================================================================== --- trunk/src/jason/NoValueForVarException.java (rev 0) +++ trunk/src/jason/NoValueForVarException.java 2013-11-07 14:08:03 UTC (rev 1758) @@ -0,0 +1,44 @@ +//---------------------------------------------------------------------------- +// Copyright (C) 2003 Rafael H. Bordini, Jomi F. Hubner, et al. +// +// This library 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 2.1 of the License, or (at your option) any later version. +// +// This library 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 +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// To contact the authors: +// http://www.inf.ufrgs.br/~bordini +// http://www.das.ufsc.br/~jomi +// +//---------------------------------------------------------------------------- + + +package jason; + + +public class NoValueForVarException extends JasonException { + + private static final long serialVersionUID = 1L; + + public NoValueForVarException() { + } + + public NoValueForVarException(String msg) { + super(msg); + } + + public NoValueForVarException(String msg, Exception cause) { + super(msg); + initCause(cause); + } + +} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |