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

org.bff.javampd.exception.MPDPlayerException Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
/*
 * MPDPlayerException.java
 *
 * Created on December 28, 2005, 1:10 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package org.bff.javampd.exception;

/**
 * Represents an error with the MPDPlayer.
 *
 * @author Bill
 * @version 1.0
 */
public class MPDPlayerException extends MPDResponseException {

    /**
     * Constructor.
     */
    public MPDPlayerException(String message) {
        super(message);
    }

    /**
     * Class constructor specifying the message and command generating the
     * error.
     *
     * @param message the exception message
     * @param command the command generating the exception
     * @param cause   the cause of the exception
     */
    public MPDPlayerException(String message, String command, Throwable cause) {
        super(message, command, cause);
    }

    /**
     * Class constructor specifying the cause.
     *
     * @param cause the cause of this exception
     */
    public MPDPlayerException(Throwable cause) {
        super(cause);
    }

    /**
     * Class constructor specifying the message and cause.
     *
     * @param message the exception message
     * @param cause   the cause of this exception
     */
    public MPDPlayerException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy