All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.objectweb.jonas_lib.genbase.GenBaseException Maven / Gradle / Ivy

The newest version!
/**
 * JOnAS: Java(TM) Open Application Server
 * Copyright (C) 2004 Bull S.A.
 * Contact: [email protected]
 *
 * 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 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
 *
 * --------------------------------------------------------------------------
 * $Id: GenBaseException.java 10528 2007-06-05 08:26:23Z sauthieg $
 * --------------------------------------------------------------------------
 */

package org.objectweb.jonas_lib.genbase;

/**
 * This class represents the exception that can be throwned by the ClientStubGen tool.
 * @author Guillaume Sauthier
 */
public class GenBaseException extends Exception {

    /**
     * Constructs a GenBaseException with no specified detail message.
     */
    public GenBaseException() {
        super();
    }

    /**
     * Constructs an GenBaseException with the specified detail message.
     * @param msg Error message
     */
    public GenBaseException(String msg) {
        super(msg);
    }

    /**
     * Constructs an GenBaseException with the specified detail message.
     * @param inner Cause Exception to wrap
     */
    public GenBaseException(Exception inner) {
        super(inner);
    }

    /**
     * Constructs an GenBaseException with the specified detail message.
     * @param msg Error message
     * @param inner Cause Exception to wrap
     */
    public GenBaseException(String msg, Exception inner) {
        super(msg, inner);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy