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

org.jacpfx.api.exceptions.ComponentNotFoundException Maven / Gradle / Ivy

There is a newer version: 2.1
Show newest version
package org.jacpfx.api.exceptions;

/**
 * Created with IntelliJ IDEA.
 * User: Andy Moncsek
 * Date: 09.09.13
 * Time: 21:05
 * This Exception will be thrown when no workbench/perspective/component was found
 */
public class ComponentNotFoundException extends RuntimeException {

    public ComponentNotFoundException() {

    }

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

    public ComponentNotFoundException(String message, Throwable e) {
        super(message, e);
    }

    public ComponentNotFoundException(Throwable e) {
        super(e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy