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

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

package org.broadinstitute.hellbender.utils.bwa;

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

    private final String image;

    public CouldNotReadImageException(final String image, final String message) {
        super(composeMessage(image, message));
        this.image = image;
    }

    public String getImage() {
        return image;
    }

    public CouldNotReadImageException(final String image) {
        super(composeMessage(image, null));
        this.image = image;
    }

    private static String composeMessage(final String image, final String message) {
        return String.format("cannot read the image file '%s'" + (message == null ? "" : ": " + message), image);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy