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

net.sf.lipermi.exception.LipeRMIException Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
/*
 * LipeRMI - a light weight Internet approach for remote method invocation
 * Copyright (C) 2006  Felipe Santos Andrade
 * 
 * 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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 * 
 * For more information, see http://lipermi.sourceforge.net/license.php
 * You can also contact author through [email protected]
 */
package net.sf.lipermi.exception;

/**
 * General LipeRMI exception
 *
 * @author lipe
 * date 05/10/2006
 */
public class LipeRMIException extends Exception {

    private static final long serialVersionUID = 7324141364282347199L;

    public LipeRMIException() {
        super();
    }

    public LipeRMIException(String message, Throwable cause) {
        super(message, cause);
    }

    public LipeRMIException(String message) {
        super(message);
    }

    public LipeRMIException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy