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

com.chain.exception.BadURLException Maven / Gradle / Ivy

package com.chain.exception;

/**
 * BadURLException wraps errors due to malformed URLs.
 */
public class BadURLException extends ChainException {
  /**
   * Initializes exception with its message attribute.
   * @param message error message
   */
  public BadURLException(String message) {
    super(message);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy