org.bff.javampd.exception.MPDPlayerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javampd Show documentation
Show all versions of javampd Show documentation
A Java API for controlling the Music Player Daemon (MPD)
/*
* 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