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

org.broadinstitute.hellbender.utils.bwa.CouldNotReadIndexException Maven / Gradle / Ivy

package org.broadinstitute.hellbender.utils.bwa;

/**
 * Created by valentin on 7/30/17.
 */
public class CouldNotReadIndexException extends RuntimeException {

    private final String index;

    public CouldNotReadIndexException(final String index, final String message) {
        super(composeMessage(index, message));
        this.index = index;
    }

    public String getImage() {
        return index;
    }

    public CouldNotReadIndexException(final String index) {
        super(composeMessage(index, null));
        this.index = index;
    }

    private static String composeMessage(final String index, final String message) {
        return String.format("could not read index '%s'" + ((message == null) ? "" : ": " + message), index);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy