com.damnhandy.uri.template.UriTemplateBuilderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of handy-uri-templates Show documentation
Show all versions of handy-uri-templates Show documentation
Handy URI Templates is a RFC6570 compliant URI template processor. The library allows clients to
utilize templatized URIs and inject replacement variables to expand the template into a URI. The library sports
a fluent API, ability to plugin custom object renderers, and supports all levels of URI templates.
The newest version!
/*
*
*
*/
package com.damnhandy.uri.template;
/**
* Raised when there is invalid rule in the construction of a URI template, such as applying multiple
* fragment expressions to a URI template.
*
* @author Ryan J. McDonough
* @version $Revision: 1.1 $
*/
public class UriTemplateBuilderException extends RuntimeException
{
/** The serialVersionUID */
private static final long serialVersionUID = -3011472988386059575L;
/**
* Create a new UriTemplateBuilderException.
*
*/
public UriTemplateBuilderException()
{
}
/**
* Create a new UriTemplateBuilderException.
*
* @param msg
*/
public UriTemplateBuilderException(String msg)
{
super(msg);
}
/**
* Create a new UriTemplateBuilderException.
*
* @param e
*/
public UriTemplateBuilderException(Throwable e)
{
super(e);
}
/**
* Create a new UriTemplateBuilderException.
*
* @param msg
* @param e
*/
public UriTemplateBuilderException(String msg, Throwable e)
{
super(msg, e);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy