Class UncheckedExecutionException

  • All Implemented Interfaces:

    @GwtCompatible
    public class UncheckedExecutionException
    extends 
    Unchecked variant of . As with ExecutionException, the exception's comes from a failed task, possibly run in another thread.

    UncheckedExecutionException is intended as an alternative to ExecutionException when the exception thrown by a task is an unchecked exception. However, it may also wrap a checked exception in some cases.

    When wrapping an Error from another thread, prefer ExecutionError. When wrapping a checked exception, prefer ExecutionException.

    Since:
    10.0
    Author:
    Charles Fry
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected UncheckedExecutionException()
      Creates a new instance with null as its detail message.
      protected  message)
      Creates a new instance with the given detail message.
         message,  cause)
      Creates a new instance with the given detail message and cause.
         cause)
      Creates a new instance with the given cause.
    • Method Summary

      • Methods inherited from class java.lang.

        , , , , , , , , , , , ,
      • Methods inherited from class java.lang.

        , , , , , , , , ,
    • Constructor Detail

      • UncheckedExecutionException

        protected   message)
        Creates a new instance with the given detail message.
      • UncheckedExecutionException

        public   message,
                                             cause)
        Creates a new instance with the given detail message and cause.
      • UncheckedExecutionException

        public   cause)
        Creates a new instance with the given cause.