Scala: warning: match may not be exhaustive
The compiler proved a case is missing from a match on a sealed type, and with fatal warnings enabled the build stops. It is worth reading rather than silencing: the same warning is how a new subtype added elsewhere in the codebase tells you every match that has not been updated.
Quick fix
Read the commands before running them. Anything that restarts a service, deletes data or changes permissions should be tried on a non-production system first.
// The compiler prints the input that would not match, including nested shapes
sealed trait Event
case class Created(id: Long) extends Event
case class Deleted(id: Long) extends Event
case object Ping extends Event
def handle(e: Event): String = e match {
case Created(id) => s"created $id"
case Deleted(id) => s"deleted $id"
case Ping => "ping" // the case the warning was about
}
// Option and Either are sealed too, so a missing None is the same warning
// Adding a catch all hides future additions: prefer listing the cases
// If a case really is unreachable, say so explicitly rather than widening
(e: @unchecked) match { case Created(id) => id }
// Turn it into an error everywhere so it cannot be ignored in review
// build.sbt
scalacOptions ++= Seq("-Wunused:all", "-Werror")
How to diagnose Scala errors
Scala's most distinctive error class is binary incompatibility: libraries are published per Scala major version, and mixing artifacts built for different versions produces confusing "not a member of" or NoSuchMethodError failures. The %% operator in sbt exists precisely to append the right suffix, and most unresolved-dependency errors are a % where %% was needed.
If the quick fix above does not resolve it, work through these steps. They apply to this whole class of error, not just to this one message, which is usually what saves the time.
- Check the Scala version suffix on every dependency. Use
%%for Scala libraries and plain%only for Java ones. - Run
sbt evictedto list dependencies that were evicted by version conflict. A frequent source of runtime NoSuchMethodError. - Use
sbt dependencyTreeto see the resolved graph and locate the transitive dependency pulling in an old version. - For inference failures, add explicit type annotations at the boundary rather than at the error site; inference failures usually propagate from further up.
- Clear stale state with
sbt cleanand remove~/.ivy2/cacheor~/.cache/coursierentries only for the specific failing artifact.
Tools worth reaching for
sbt evictedsbt dependencyTreecoursier resolvescalac -explainMiMa (binary compat checks)
Authoritative references
Primary documentation for this error, worth reading before applying any fix in production.
Related Scala errors
- sbt: Conflicting cross-version suffixes in: org.scala-lang.modulesTwo dependencies pulled in the same library built for different Scala versions, for example…
- Scala 3: no given instance of type X was foundThe compiler needed a contextual value and could not find one in scope. This is Scala 3's…
- Scala: could not find implicit value for parameterThe compiler could not supply an implicit argument, usually because the instance exists but…
- Scala: java.lang.NoSuchMethodError: scala.Predef$.refArrayOpsThe code compiled against one version of the Scala library and is running against another…
- Scala: NoClassDefFoundError: scala/collection/IterableOnceA jar built for a different Scala version is on the classpath. Scala is only binary…
- Scala: recursive value x needs typeA definition refers to its own name on the right hand side, so the compiler cannot infer the…
- Scala: sbt unresolved dependencysbt could not download a library: wrong coordinates, a missing resolver, a Scala-version…
- Scala: type mismatch; found: Unit, required: StringThe last expression in the block is an assignment or a `for` loop, both of which evaluate to…
Browse other categories
- HTTP 494xx client errors, 5xx server errors, redirects, headers and protocol problems.
- JavaScript 42npm resolution, async pitfalls, hydration, memory limits and runtime type…
- Database 41Connections, deadlocks, constraints, replication and memory limits.
- AI 35Rate limits, context windows, GPU memory and model-serving failures.
- Network 35Refused connections, timeouts, resets, MTU problems and port exhaustion.
- Python 35Imports, virtual environments, encoding, concurrency and dependency conflicts.
- Kubernetes 34CrashLoopBackOff, ImagePullBackOff, OOMKilled, RBAC, scheduling and storage.
- Docker 27Daemon connectivity, disk space, image pulls, ports and architecture mismatches.
- System 26Disk space, systemd units, file descriptors, OOM killer and scheduled jobs.
- Cloud 25IAM permissions, quotas, service limits and credential failures.
- Security 25JWT validation, CSRF, OAuth grants, SELinux, SSH host keys and CSP.
- TLS 24Untrusted authorities, expiry, hostname mismatch, chains and cipher negotiation.
Something missing or wrong?
This entry is maintained by hand. If the fix is out of date, incomplete, or you have a better one, email a correction and it will be reviewed.