- 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 newCoroutineExitException
objectCoroutineExitException(String message)
Allocates a newCoroutineExitException
objectCoroutineExitException(String message, Throwable cause)
Allocates a newCoroutineExitException
objectCoroutineExitException(Throwable cause)
Allocates a newCoroutineExitException
object
-
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 newCoroutineExitException
object
-
CoroutineExitException
public CoroutineExitException(String message, Throwable cause)
Allocates a newCoroutineExitException
object- Parameters:
message
- Stringcause
- Throwable
-
CoroutineExitException
public CoroutineExitException(String message)
Allocates a newCoroutineExitException
object- Parameters:
message
- String
-
CoroutineExitException
public CoroutineExitException(Throwable cause)
Allocates a newCoroutineExitException
object- Parameters:
cause
- Throwable
-
-