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 /** 009 * Construct with a message. 010 */ 011 public InvalidPathArgumentException(String message) { 012 super(message); 013 } 014 015 /** 016 * Construct with an exception. 017 */ 018 public InvalidPathArgumentException(Exception e) { 019 super(e); 020 } 021 022 /** 023 * Construct with message and exception. 024 */ 025 public InvalidPathArgumentException(String message, Exception e) { 026 super(message, e); 027 } 028 029}