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

com.aegisql.conveyor.config.ConveyorConfigurationException Maven / Gradle / Ivy

The newest version!
package com.aegisql.conveyor.config;

// TODO: Auto-generated Javadoc

import java.io.Serial;

/**
 * The Class ConveyorConfigurationException.
 */
public class ConveyorConfigurationException extends RuntimeException {

	/** The Constant serialVersionUID. */
	@Serial
    private static final long serialVersionUID = 1L;

	/**
	 * Instantiates a new conveyor configuration exception.
	 */
	public ConveyorConfigurationException() {
		super();
	}

	/**
	 * Instantiates a new conveyor configuration exception.
	 *
	 * @param message the message
	 * @param cause the cause
	 * @param enableSuppression the enable suppression
	 * @param writableStackTrace the writable stack trace
	 */
	public ConveyorConfigurationException(String message, Throwable cause, boolean enableSuppression,
			boolean writableStackTrace) {
		super(message, cause, enableSuppression, writableStackTrace);
	}

	/**
	 * Instantiates a new conveyor configuration exception.
	 *
	 * @param message the message
	 * @param cause the cause
	 */
	public ConveyorConfigurationException(String message, Throwable cause) {
		super(message, cause);
	}

	/**
	 * Instantiates a new conveyor configuration exception.
	 *
	 * @param message the message
	 */
	public ConveyorConfigurationException(String message) {
		super(message);
	}

	/**
	 * Instantiates a new conveyor configuration exception.
	 *
	 * @param cause the cause
	 */
	public ConveyorConfigurationException(Throwable cause) {
		super(cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy