2009-06-03 02:14:46 +08:00
|
|
|
package org.broadinstitute.sting.utils;
|
2010-09-12 22:47:19 +08:00
|
|
|
|
2010-09-12 23:07:38 +08:00
|
|
|
import org.broadinstitute.sting.utils.exceptions.ReviewedStingException;
|
2009-06-03 02:14:46 +08:00
|
|
|
/**
|
|
|
|
|
* User: hanna
|
|
|
|
|
* Date: Jun 2, 2009
|
|
|
|
|
* Time: 11:43:48 AM
|
|
|
|
|
* BROAD INSTITUTE SOFTWARE COPYRIGHT NOTICE AND AGREEMENT
|
|
|
|
|
* Software and documentation are copyright 2005 by the Broad Institute.
|
|
|
|
|
* All rights are reserved.
|
|
|
|
|
*
|
|
|
|
|
* Users acknowledge that this software is supplied without any warranty or support.
|
|
|
|
|
* The Broad Institute is not responsible for its use, misuse, or
|
|
|
|
|
* functionality.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Indicates that something was wrong with in the parameters passed to create a GenomeLoc...
|
|
|
|
|
* bad sequence id out of bounds, etc.
|
|
|
|
|
*/
|
|
|
|
|
|
2010-09-12 23:07:38 +08:00
|
|
|
public class MalformedGenomeLocException extends ReviewedStingException {
|
2009-06-03 02:14:46 +08:00
|
|
|
/**
|
|
|
|
|
* Create a new MalformedGenomeLocException with the given message. Does not preserve the existing stack trace.
|
|
|
|
|
* @param message The message.
|
|
|
|
|
*/
|
|
|
|
|
public MalformedGenomeLocException( String message ) {
|
|
|
|
|
super(message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Create a new MalformedGenomeLocException with the given message and root cause.
|
|
|
|
|
* @param message The message.
|
|
|
|
|
* @param t The root cause.
|
|
|
|
|
*/
|
|
|
|
|
public MalformedGenomeLocException( String message, Throwable t ) {
|
|
|
|
|
super(message,t);
|
|
|
|
|
}
|
|
|
|
|
}
|