Class AsyncTaskException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
be.seeseemelk.mockbukkit.scheduler.AsyncTaskException
All Implemented Interfaces:
Serializable

public class AsyncTaskException extends RuntimeException
Thrown when an asynchronous task throws an exception.
See Also:
  • Constructor Details

    • AsyncTaskException

      public AsyncTaskException(Exception cause)
      Constructs a new AsyncTaskException with the specified cause and a detail message of (cause==null ? null : cause.toString())
      Parameters:
      cause - The exception thrown in the asynchronous task.