gatk-3.8/scala/src/org/broadinstitute/sting/queue/util/RetryException.scala

10 lines
276 B
Scala
Raw Normal View History

package org.broadinstitute.sting.queue.util
import org.broadinstitute.sting.queue.QException
/**
* Thrown after giving up on retrying.
*/
class RetryException(private val message: String, private val throwable: Throwable)
extends QException(message, throwable) {}