Class CoroutineException

    • Constructor Summary

      Constructors 
      Constructor Description
      CoroutineException​(java.lang.String messageFormat, java.lang.Object... args)
      Creates a new instance with a formatted message.
      CoroutineException​(java.lang.String message, java.lang.Throwable cause)
      Creates a new instance.
      CoroutineException​(java.lang.Throwable cause)
      Creates a new instance.
    • Method Summary

      • 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
    • Constructor Detail

      • CoroutineException

        public CoroutineException​(java.lang.Throwable cause)
        Creates a new instance.
        Parameters:
        cause - The causing exception
      • CoroutineException

        public CoroutineException​(java.lang.String messageFormat,
                                  java.lang.Object... args)
        Creates a new instance with a formatted message.
        Parameters:
        messageFormat - The error message format string
        args - The format arguments
      • CoroutineException

        public CoroutineException​(java.lang.String message,
                                  java.lang.Throwable cause)
        Creates a new instance.
        Parameters:
        message - The error message
        cause - The causing exception