5 lines
174 B
Scala
5 lines
174 B
Scala
|
|
package org.broadinstitute.sting.queue
|
||
|
|
|
||
|
|
class QException(private val message: String, private val throwable: Throwable = null)
|
||
|
|
extends RuntimeException(message, throwable)
|