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

org.davic.net.InvalidLocatorException Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package org.davic.net;


/**

 * This exception is thrown when one or more parameters to construct

 * a Locator are invalid.

 *

 */


public class InvalidLocatorException extends Exception {

	

  public InvalidLocatorException() {

    super();

  }


  /** Constructor for the exception with a specified reason

    * @param reason the reason why the exception was raised

    */

  public InvalidLocatorException(String reason) {

    super(reason);

  }


}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy