Class PageUrlException

All Implemented Interfaces:
Serializable

public class PageUrlException extends RuntimeException
Exception thrown when the number of arguments provided for a page URL does not match the number of required URL parameters defined in the page's route pattern.
Since:
2007
Version:
1.0
Author:
Marvin P. Warble Jr.
See Also:
  • Constructor Details

    • PageUrlException

      public PageUrlException(int numArgs, int numParams)
      Creates a new PageUrlException indicating a mismatch between arguments and parameters.
      Parameters:
      numArgs - The number of arguments provided.
      numParams - The number of required URL parameters in the route pattern.