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

com.wselwood.mpcreader.InvalidDataException Maven / Gradle / Ivy

There is a newer version: 0.1.1
Show newest version
package com.wselwood.mpcreader;

/**
 * Exception to be used when data in the file is invalid.
 *
 * Created by wselwood on 14/04/14.
 */
public class InvalidDataException extends Exception {

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

    public InvalidDataException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy