summaryrefslogtreecommitdiff
path: root/examples/scala-js/javalib/src/main/scala/java/util/concurrent/ExecutionException.scala
blob: 6d04889f1f2d24ff03362d32687f5a7ccf2a0ed8 (plain) (blame)
1
2
3
4
5
6
7
8
9
package java.util.concurrent

class ExecutionException(message: String, cause: Throwable)
    extends Exception(message, cause) {

  protected def this() = this(null, null)
  protected def this(message: String) = this(message, null)
  def this(cause: Throwable) = this(null, cause)
}