sigma.SigmaException.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sigma-state_2.12 Show documentation
Show all versions of sigma-state_2.12 Show documentation
Interpreter of a Sigma-State language
The newest version!
package sigma
import scala.collection.compat.immutable.ArraySeq
/** Base class for Sigma-related exceptions.
*
* @param message the error message
* @param cause an optional cause for the exception
* @param args an optional sequence of arguments to be passed with the exception
*/
class SigmaException(
val message: String,
val cause: Option[Throwable] = None,
val args: Seq[Any] = ArraySeq.empty) extends Exception(message, cause.orNull)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy