From bccebf88999e85f520a474ffdc4069f33d8b71da Mon Sep 17 00:00:00 2001 From: depristo Date: Sun, 12 Sep 2010 14:38:46 +0000 Subject: [PATCH] Newly placed StingException git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@4264 348d0f76-0448-11de-a6fe-93d51630548a --- .../sting/utils/StingException.java | 39 ------------------- 1 file changed, 39 deletions(-) delete mode 100644 java/src/org/broadinstitute/sting/utils/StingException.java diff --git a/java/src/org/broadinstitute/sting/utils/StingException.java b/java/src/org/broadinstitute/sting/utils/StingException.java deleted file mode 100644 index 74ccd9ebc..000000000 --- a/java/src/org/broadinstitute/sting/utils/StingException.java +++ /dev/null @@ -1,39 +0,0 @@ -package org.broadinstitute.sting.utils; - -/** - * - * User: aaron - * Date: Apr 6, 2009 - * Time: 8:11:12 PM - * - * The Broad Institute - * SOFTWARE COPYRIGHT NOTICE AGREEMENT - * This software and its documentation are copyright 2009 by the - * Broad Institute/Massachusetts Institute of Technology. All rights are reserved. - * - * This software is supplied without any warranty or guaranteed support whatsoever. Neither - * the Broad Institute nor MIT can be responsible for its use, misuse, or functionality. - * - */ - - -/** - * @author aaron - * @version 1.0 - * @date Apr 6, 2009 - *

- * Class StingException - *

- * This exception allows us to filter out exceptions that come from core GATK code, and those that - * are not homegrown.. - */ -public class StingException extends RuntimeException { - public StingException(String msg) { - super(msg); - } - - public StingException(String message, Throwable throwable) { - super(message, throwable); - } -} -