view src/org/icedrobot/ika/plugins/IkaPluginException.java @ 0:91ff28c21e0b

initial code drop
author Mario Torre <neugens.limasoftware@gmail.com>
date Fri, 04 Mar 2011 00:37:30 +0100
parents
children
line wrap: on
line source

/*
 * IKA - IcedRobot Kiosk Application
 * Copyright (C) 2011  IcedRobot team
 *
 * 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 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 Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package org.icedrobot.ika.plugins;


/**
 * @author Mario Torre <neugens.limasoftware@gmail.com>
 */
public class IkaPluginException extends RuntimeException {

    public IkaPluginException(String string) {
        super(string);
    }

    public IkaPluginException(String string, Throwable ex) {
        super(string, ex);
    }

    public IkaPluginException(String string, Exception ex) {
        super(string, ex);
    }
}