trait
Err extends AnyRef
Abstract Value Members
-
abstract
def
context: List[String]
-
abstract
def
message: String
-
abstract
def
pushContext(ctx: String): Err
Concrete Value Members
-
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
def
+(other: String): String
-
def
->[B](y: B): (Err, B)
-
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
def
ensuring(cond: (Err) ⇒ Boolean, msg: ⇒ Any): Err
-
def
ensuring(cond: (Err) ⇒ Boolean): Err
-
def
ensuring(cond: Boolean, msg: ⇒ Any): Err
-
def
ensuring(cond: Boolean): Err
-
-
-
def
finalize(): Unit
-
def
formatted(fmtstr: String): String
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
def
messageWithContext: String
-
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
-
def
→[B](y: B): (Err, B)
Shadowed Implicit Value Members
-
val
self: Any
-
val
self: Any
Deprecated Value Members
-
def
x: Err
-
def
x: Err
Inherited by implicit conversion any2stringadd from
Err to StringAdd
Inherited by implicit conversion any2ArrowAssoc from
Err to ArrowAssoc[Err]
Inherited by implicit conversion any2Ensuring from
Err to Ensuring[Err]
Describes an error.
An error has a message and a list of context identifiers that provide insight into where an error occurs in a large structure.
This type is not sealed so that codecs can return domain specific subtypes and dispatch on those subtypes.