UriPathMatchingException constructor

UriPathMatchingException(
  1. String message
)

Exception thrown when a URI or route path fails to match a defined template in a path matcher.

Common scenarios include:

  • Invalid placeholders
  • Missing required path segments
  • Mismatched patterns or formats

Useful for debugging route resolution and pattern-based matching systems.

Implementation

UriPathMatchingException(super.message);