Class Unmarshaller.EitherUnmarshallingException

  • All Implemented Interfaces:
    java.io.Serializable, scala.Equals, scala.Product
    Enclosing interface:
    Unmarshaller<A,​B>

    public static final class Unmarshaller.EitherUnmarshallingException
    extends java.lang.RuntimeException
    implements scala.Product, java.io.Serializable
    Order of parameters (`right` first, `left` second) is intentional, since that's the order we evaluate them in.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      EitherUnmarshallingException​(java.lang.Class<?> rightClass, java.lang.Throwable right, java.lang.Class<?> leftClass, java.lang.Throwable left)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Throwable left()  
      java.lang.Class<?> leftClass()  
      java.lang.Throwable right()  
      java.lang.Class<?> rightClass()  
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface scala.Equals

        canEqual, equals
      • Methods inherited from interface scala.Product

        productArity, productElement, productElementName, productElementNames, productIterator, productPrefix
    • Constructor Detail

      • EitherUnmarshallingException

        public EitherUnmarshallingException​(java.lang.Class<?> rightClass,
                                            java.lang.Throwable right,
                                            java.lang.Class<?> leftClass,
                                            java.lang.Throwable left)
    • Method Detail

      • rightClass

        public java.lang.Class<?> rightClass()
      • right

        public java.lang.Throwable right()
      • leftClass

        public java.lang.Class<?> leftClass()
      • left

        public java.lang.Throwable left()