7 lines
237 B
Scala
7 lines
237 B
Scala
|
|
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)
|