Package akka.actor
Class SchedulerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- akka.AkkaException
-
- akka.actor.SchedulerException
-
- All Implemented Interfaces:
java.io.Serializable
,scala.Equals
,scala.Product
,scala.util.control.NoStackTrace
public final class SchedulerException extends AkkaException implements scala.util.control.NoStackTrace, scala.Product, java.io.Serializable
This exception is thrown by Scheduler.schedule* when scheduling is not possible, e.g. after shutting down the Scheduler.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SchedulerException(java.lang.String msg)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SchedulerException
apply(java.lang.String msg)
boolean
canEqual(java.lang.Object x$1)
SchedulerException
copy(java.lang.String msg)
java.lang.String
copy$default$1()
boolean
equals(java.lang.Object x$1)
int
hashCode()
java.lang.String
msg()
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()
static java.lang.String
toString()
static scala.Option<java.lang.String>
unapply(SchedulerException x$0)
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Method Detail
-
toString
public static final java.lang.String toString()
-
apply
public static SchedulerException apply(java.lang.String msg)
-
unapply
public static scala.Option<java.lang.String> unapply(SchedulerException x$0)
-
msg
public java.lang.String msg()
-
copy
public SchedulerException copy(java.lang.String msg)
-
copy$default$1
public java.lang.String 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
-
-