2010-05-24 04:21:09 +08:00
|
|
|
package org.broadinstitute.sting.queue
|
|
|
|
|
|
2010-09-12 23:18:08 +08:00
|
|
|
import org.broadinstitute.sting.utils.exceptions.StingException
|
2010-06-26 04:51:13 +08:00
|
|
|
|
2010-05-24 04:21:09 +08:00
|
|
|
class QException(private val message: String, private val throwable: Throwable = null)
|
2010-06-26 04:51:13 +08:00
|
|
|
extends StingException(message, throwable)
|