Skip to content

Commit d067dd1

Browse files
authored
MultipleException should be a RuntimeException
1 parent fb0b4b6 commit d067dd1

File tree

1 file changed

+1
-1
lines changed
  • plugins-INDArrayLayers/src/main/scala-2.11/com/thoughtworks/deeplearning/plugins

1 file changed

+1
-1
lines changed

plugins-INDArrayLayers/src/main/scala-2.11/com/thoughtworks/deeplearning/plugins/INDArrayLayers.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import com.thoughtworks.continuation._
2222

2323
object INDArrayLayers {
2424

25-
final case class MultipleException(throwableSet: Set[Throwable]) extends Exception("Multiple exceptions found") {
25+
final case class MultipleException(throwableSet: Set[Throwable]) extends RuntimeException("Multiple exceptions found") {
2626
override def toString: String = throwableSet.mkString("\n")
2727

2828
override def printStackTrace(): Unit = {

0 commit comments

Comments
 (0)