gatk-3.8/public/scala/src/org/broadinstitute/sting/queue/QException.scala

7 lines
237 B
Scala
Executable File

package org.broadinstitute.sting.queue
import org.broadinstitute.sting.utils.exceptions.StingException
class QException(private val message: String, private val throwable: Throwable = null)
extends StingException(message, throwable)