com.damnhandy.uri.template.VarExploderException 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.
/*
*
*
*/
package com.damnhandy.uri.template;
/**
* A VarExploderException.
*
* @author Ryan J. McDonough
* @version $Revision: 1.1 $
* @since 1.2
*/
public class VarExploderException extends VariableExpansionException
{
/** The serialVersionUID */
private static final long serialVersionUID = -3859548780063196996L;
/**
* Create a new VarExploderException.
*
* @param message
* @param cause
*/
public VarExploderException(String message, Throwable cause)
{
super(message, cause);
}
/**
* Create a new VarExploderException.
*
* @param cause
*/
public VarExploderException(Throwable cause)
{
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy