- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.dyn.CoroutineExitException
-
- All Implemented Interfaces:
Serializable
public class CoroutineExitException extends RuntimeException
Implementation of exeception for coroutine exit- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CoroutineExitException()Allocates a newCoroutineExitExceptionobjectCoroutineExitException(String message)Allocates a newCoroutineExitExceptionobjectCoroutineExitException(String message, Throwable cause)Allocates a newCoroutineExitExceptionobjectCoroutineExitException(Throwable cause)Allocates a newCoroutineExitExceptionobject
-
Method Summary
-
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
CoroutineExitException
public CoroutineExitException()
Allocates a newCoroutineExitExceptionobject
-
CoroutineExitException
public CoroutineExitException(String message, Throwable cause)
Allocates a newCoroutineExitExceptionobject- Parameters:
message- Stringcause- Throwable
-
CoroutineExitException
public CoroutineExitException(String message)
Allocates a newCoroutineExitExceptionobject- Parameters:
message- String
-
CoroutineExitException
public CoroutineExitException(Throwable cause)
Allocates a newCoroutineExitExceptionobject- Parameters:
cause- Throwable
-
-