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

com.github.mike10004.xvfbmanager.XvfbException Maven / Gradle / Ivy

There is a newer version: 0.19
Show newest version
/*
 * (c) 2016 Mike Chaberski
 */
package com.github.mike10004.xvfbmanager;

/**
 * Exception relating to virtual framebuffer management.
 */
public class XvfbException extends RuntimeException {

    /**
     * Constructs an instance.
     */
    public XvfbException() {
    }

    /**
     * Constructs an instance with the given message.
     * @param message the message
     */
    public XvfbException(String message) {
        super(message);
    }

    /**
     * Constructs an instance with the given message and cause.
     * @param message the message
     * @param cause the cause
     */
    public XvfbException(String message, Throwable cause) {
        super(message, cause);
    }

    /**
     * Constructs an instance with the given cause.
     * @param cause the cause
     */
    public XvfbException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy