MPDClientException.java :  » Client » pmix » org » a0z » mpd » Android Open Source

Android Open Source » Client » pmix 
pmix » org » a0z » mpd » MPDClientException.java
package org.a0z.mpd;

/**
 * Represents an MPD Client error.
 * @author Felipe Gustavo de Almeida
 * @version $Id: MPDServerException.java 2595 2004-11-11 00:21:36Z galmeida $
 */
public class MPDClientException extends MPDException {

    /**
     * Constructor.
     */
    public MPDClientException() {
        super();
    }

    /**
     * Constructor.
     * @param message exception message.
     */
    public MPDClientException(String message) {
        super(message);
    }

    /**
     * Constructor.
     * @param message exception message.
     * @param cause cause of this exception.
     */
    public MPDClientException(String message, Throwable cause) {
        super(message, cause);
    }

    /**
     * Contructor.
     * @param cause cause of this exception.
     */
    public MPDClientException(Throwable cause) {
        super(cause);
    }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.