Package akka.actor.typed
Class DeathPactException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- akka.actor.typed.DeathPactException
-
- All Implemented Interfaces:
java.io.Serializable
,scala.Equals
,scala.Product
public final class DeathPactException extends java.lang.RuntimeException implements scala.Product, java.io.Serializable
Exception that an actor fails with if it does not handle a Terminated message.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DeathPactException(ActorRef<scala.runtime.Nothing$> ref)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DeathPactException
apply(ActorRef<scala.runtime.Nothing$> ref)
boolean
canEqual(java.lang.Object x$1)
DeathPactException
copy(ActorRef<scala.runtime.Nothing$> ref)
ActorRef<scala.runtime.Nothing$>
copy$default$1()
boolean
equals(java.lang.Object x$1)
ActorRef<java.lang.Void>
getRef()
Java APIint
hashCode()
int
productArity()
java.lang.Object
productElement(int x$1)
java.lang.String
productElementName(int x$1)
scala.collection.Iterator<java.lang.Object>
productIterator()
java.lang.String
productPrefix()
ActorRef<scala.runtime.Nothing$>
ref()
static java.lang.String
toString()
static scala.Option<ActorRef<scala.runtime.Nothing$>>
unapply(DeathPactException x$0)
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
DeathPactException
public DeathPactException(ActorRef<scala.runtime.Nothing$> ref)
-
-
Method Detail
-
toString
public static final java.lang.String toString()
-
apply
public static DeathPactException apply(ActorRef<scala.runtime.Nothing$> ref)
-
unapply
public static scala.Option<ActorRef<scala.runtime.Nothing$>> unapply(DeathPactException x$0)
-
ref
public ActorRef<scala.runtime.Nothing$> ref()
-
getRef
public ActorRef<java.lang.Void> getRef()
Java API
-
copy
public DeathPactException copy(ActorRef<scala.runtime.Nothing$> ref)
-
copy$default$1
public ActorRef<scala.runtime.Nothing$> copy$default$1()
-
productPrefix
public java.lang.String productPrefix()
- Specified by:
productPrefix
in interfacescala.Product
-
productArity
public int productArity()
- Specified by:
productArity
in interfacescala.Product
-
productElement
public java.lang.Object productElement(int x$1)
- Specified by:
productElement
in interfacescala.Product
-
productIterator
public scala.collection.Iterator<java.lang.Object> productIterator()
- Specified by:
productIterator
in interfacescala.Product
-
canEqual
public boolean canEqual(java.lang.Object x$1)
- Specified by:
canEqual
in interfacescala.Equals
-
productElementName
public java.lang.String productElementName(int x$1)
- Specified by:
productElementName
in interfacescala.Product
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object x$1)
- Specified by:
equals
in interfacescala.Equals
- Overrides:
equals
in classjava.lang.Object
-
-