We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
UnsupportedInputException
1 parent ccd71b6 commit 116600cCopy full SHA for 116600c
js-envs/src/main/scala/org/scalajs/jsenv/Input.scala
@@ -30,7 +30,7 @@ object Input {
30
final case class ScriptsToLoad(scripts: List[VirtualBinaryFile]) extends Input
31
}
32
33
-case class UnsupportedInputException(msg: String, cause: Throwable)
+class UnsupportedInputException(msg: String, cause: Throwable)
34
extends IllegalArgumentException(msg, cause) {
35
def this(msg: String) = this(msg, null)
36
def this(input: Input) = this(s"Unsupported input: $input")
0 commit comments