
.circumflex-core.2.0.source-code.exception.scala Maven / Gradle / Ivy
package ru.circumflex.core
/*!# Exception
All exceptions thrown from Circumflex components should extend `CircumflexException` class.
*/
/**
* Indicates a common error occured inside Circumflex component.
*
* For more information refer to
* exception.scala.
*/
class CircumflexException(msg: String, cause: Throwable = null)
extends RuntimeException(msg, cause) {
def this(cause: Throwable) = this(null, cause)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy