Error

case class Error(msg: SqlRequestError) extends SqlResult[Nothing]

Erroneous result (failure while parsing).

trait Serializable
trait Product
trait Equals
trait SqlResult[Nothing]
class Object
trait Matchable
class Any

Value members

Inherited methods

def collect[B](f: PartialFunction[Nothing, B]): SqlResult[B]
Inherited from:
SqlResult
def flatMap[B](k: Nothing => SqlResult[B]): SqlResult[B]
Inherited from:
SqlResult
def fold[B](e: SqlRequestError => B, f: Nothing => B): B

Either applies function e if result is erroneous, or function f with successful result if any.

Either applies function e if result is erroneous, or function f with successful result if any.

Inherited from:
SqlResult
def map[B](f: Nothing => B): SqlResult[B]
Inherited from:
SqlResult
Inherited from:
Product