blob: 7d7c532af1d728ed7dc8a290c82dd603e89cfa9f [file] [log] [blame]
Roman Elizarovf29203c2018-01-11 12:39:36 +03001/*
2 * Copyright 2016-2017 JetBrains s.r.o.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package kotlinx.coroutines.experimental
18
19import java.util.concurrent.*
20
21/**
22 * This exception gets thrown if an exception is caught while processing [CompletionHandler] invocation for [Job].
23 */
24public actual class CompletionHandlerException actual constructor(
25 message: String,
26 cause: Throwable
27) : RuntimeException(message, cause)
28
Roman Elizarovaa461cf2018-04-11 13:20:29 +030029/**
30 * Thrown by cancellable suspending functions if the [Job] of the coroutine is cancelled while it is suspending.
31 * It indicates _normal_ cancellation of a coroutine.
32 * **It is not printed to console/log by default uncaught exception handler**.
33 * (see [handleCoroutineException]).
34*/
Roman Elizarovf29203c2018-01-11 12:39:36 +030035public actual typealias CancellationException = java.util.concurrent.CancellationException
36
37/**
38 * Thrown by cancellable suspending functions if the [Job] of the coroutine is cancelled or completed
39 * without cause, or with a cause or exception that is not [CancellationException]
40 * (see [Job.getCancellationException]).
41 */
42public actual class JobCancellationException public actual constructor(
43 message: String,
44 cause: Throwable?,
45 /**
46 * The job that was cancelled.
47 */
48 public actual val job: Job
49) : CancellationException(message) {
50 init { if (cause != null) initCause(cause) }
51 override fun toString(): String = "${super.toString()}; job=$job"
52 override fun equals(other: Any?): Boolean =
53 other === this ||
54 other is JobCancellationException && other.message == message && other.job == job && other.cause == cause
55 override fun hashCode(): Int =
56 (message!!.hashCode() * 31 + job.hashCode()) * 31 + (cause?.hashCode() ?: 0)
57}
58
Roman Elizarovf29203c2018-01-11 12:39:36 +030059internal actual class DispatchException actual constructor(message: String, cause: Throwable) : RuntimeException(message, cause)
Roman Elizarovaa461cf2018-04-11 13:20:29 +030060
61@Suppress("NOTHING_TO_INLINE")
62internal actual inline fun Throwable.addSuppressedThrowable(other: Throwable) =
63 addSuppressed(other)