case class ValidationFailedException(errorMessage: String) extends Exception with Product with Serializable
Exception that indicates a validation failed.
This exception is used to indicate and describe a failed validation by the validating
methods
of TrySugar
and FutureSugar
.
- errorMessage
a string describing the validation failure
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ValidationFailedException
- Serializable
- Product
- Equals
- Exception
- Throwable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
new
ValidationFailedException(errorMessage: String)
- errorMessage
a string describing the validation failure
Value Members
-
final
def
addSuppressed(arg0: Throwable): Unit
- Definition Classes
- Throwable
- val errorMessage: String
-
def
fillInStackTrace(): Throwable
- Definition Classes
- Throwable
-
def
getCause(): Throwable
- Definition Classes
- Throwable
-
def
getLocalizedMessage(): String
- Definition Classes
- Throwable
-
def
getMessage(): String
- Definition Classes
- Throwable
-
def
getStackTrace(): Array[StackTraceElement]
- Definition Classes
- Throwable
-
final
def
getSuppressed(): Array[Throwable]
- Definition Classes
- Throwable
-
def
initCause(arg0: Throwable): Throwable
- Definition Classes
- Throwable
-
def
printStackTrace(arg0: PrintWriter): Unit
- Definition Classes
- Throwable
-
def
printStackTrace(arg0: PrintStream): Unit
- Definition Classes
- Throwable
-
def
printStackTrace(): Unit
- Definition Classes
- Throwable
-
def
setStackTrace(arg0: Array[StackTraceElement]): Unit
- Definition Classes
- Throwable
-
def
toString(): String
- Definition Classes
- Throwable → AnyRef → Any