001package io.avaje.http.api;
002
003/**
004 * Exception for all invalid path type conversions - numbers, uuid, date time types etc.
005 */
006public class InvalidPathArgumentException extends InvalidTypeArgumentException {
007
008  public InvalidPathArgumentException(String message) {
009    super(message);
010  }
011
012  public InvalidPathArgumentException(Exception e) {
013    super(e);
014  }
015
016  public InvalidPathArgumentException(String message, Exception e) {
017    super(message, e);
018  }
019
020}