All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.damnhandy.uri.template.VarExploderException Maven / Gradle / Ivy

The newest version!
/*
 *
 *
 */
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 - 2025 Weber Informatics LLC | Privacy Policy